Skip to content
Prev 22907 / 398502 Next

Multi-plot

You may use

windows(width=7,height=5)   ## width & height in inches
plot(1:10,col="red")        ## 1st plot
windows(width=7,height=5)   ## width & height in inches
plot(10:1,col="navy")       ## 2nd plot
and so on...

(windows(),X11() or macintosh() depending on the platform)

Best, isaia.
Enrico De Giorgi wrote: