multiplot | R Documentation |
Create plots with columns or rows of unequal sizes.
multiplot (n = 2, type = 'r', sizes = rep (1/n, n), show = FALSE)
n |
The number of figure panels to be created. |
type |
If 'r', the panels will be arranged in rows, if 'c', the panels will be arranged in columns. |
sizes |
A vector indicating the percentage of the total width/height taken up by each row/column. |
show |
If TRUE, the resulting panel layout is shown to the user. |
This function is essentially a wrapper for the layout() function, which allows the user to create multi-panel figures in which each row or column is of a varying height/width.
Please note that small rows or columns might result in an error related to figure margins being too large when you try to create a plot. These may be reduced with the 'mar' parameter for the par() function, which sometimes solves the problem.
Santiago Barreda <sbarreda@ucdavis.edu>
## uncomment and run
data (sound)
## run this instead to select your own sound for this demo.
# sound = loadsound ()
#par (mar = c(4,4,1,1))
#multiplot (n = 3, sizes = c(.25, .5, .25))
#plot (sound)
#spectrogram (sound, dynamicrange = 50, maxfreq = 7000)
#spectralslice (sound)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.