Displaying 1 result from an estimated 1 matches for "ancbwplot".
2004 Jun 11
2
Sweave and multiple graphs
Dear list,
I am using Sweave to build a small report. I want to produce a series of
figures, each figure containing a number of plots and then have them
included in the Sweave file.
An example would be to :
postscript(file = "ANCbwplot%03d.eps", onefile = FALSE, other options...)
oldpar <- par(mfrow = c(2,2))
....
do lots of plots to produce a number of eps files
....
par(oldpar)
dev.off()
The example in the Sweave FAQ shows how to do something similar for
cases where you know how many figures there are, but I do not kn...