multiplot | R Documentation |
Calls layout
using atomic arguments and convenient defaults, mainly to be included in generic.process
design files.
multiplot(nrow, ncol, widths = rep.int(1, ncol), heights = rep.int(1, nrow),
indexes = 1:(nrow * ncol), byrow = FALSE, respect = FALSE, cex = 1)
nrow |
Single integer value, the amount of rows into which divide the screen for multiple plots. |
ncol |
Single integer value, the amount of columns into which divide the screen for multiple plots. |
widths |
To be passed to |
heights |
To be passed to |
indexes |
Integer vector, the ordering of plots while building the |
byrow |
Single logical value, whether to fill the |
respect |
To be passed to |
cex |
Single numeric value, if not |
Invisibly returns TRUE
on success.
Sylvain Mareschal
generic.process
multiplot(nrow=1, ncol=3, widths=c(1,2,2))
plot(1:5)
plot(1:5)
plot(1:5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.