r - Creating a Plot Window of a Particular Size -
How can I create a specific on-screen R plot window with a specific width and height (pixels, etc.) ?
Use dev.new ()
. (See.)
plot (1:10) dev.new (width = 5, height = 4) plot (1:20)
How can I create a specific on-screen R plot window with a specific width and height (pixels, etc.) ?
Use dev.new ()
. (See.)
plot (1:10) dev.new (width = 5, height = 4) plot (1:20)
Comments
Post a Comment