View source: R/all_custom_functions.R
setUpGraph | R Documentation |
Opens a new external window for plotting. Mainly consists of calling dev.new() function. As an invisible output the current par() settings are returned by the use of parSave().
setUpGraph(row = 2, col = 2)
row |
Set number of rows in plot window. |
col |
Set number of columns in plot window. |
Returns (invisibly) the current par() settings by the use of parSave().
olpar <- setUpGraph(row = 2, col = 2)
plot(1:5)
parReset(olpar)
plot(1:5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.