[R] Drawing multiple plots on one page for publication.

Andrew Robinson andrewr at uidaho.edu
Thu Aug 5 04:03:40 CEST 2004


Zach,

try:


pdf("Name.pdf")
par(mfrow=c(2,2))
par(mai=c(0.5,0.3, 0.6, 0.4))

plot(x, y, ..........)
plot(x, z ...........)
plot(z, y,...........)
plot(z+x, x-y, .....)
dev.off()


Andrew




More information about the R-help mailing list