I've seen that there's an history for graphics. How can I save it manually? Can I save more than 4 plots? I'm using R1.6.2 under win98 [[alternative HTML version deleted]]
On Windows, read the README.rw10xx! (READMEs and FAQs are meant to be read, especially before posting requests for help.) On Thu, 31 Jul 2003, Erwan BARRET wrote:> I've seen that there's an history for graphics. > How can I save it manually?Yes: see the history menu and ?savePlot.> Can I save more than 4 plots?Yes.> I'm using R1.6.2 under win98That's old: please upgrade. -- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595
Dear Erwan,
Perhaps there is a way to do this. I typically use the
following sequence, however:
for (i in 1:10) {
postscript(file=paste("blah", i, ".ps",
sep=""))
barchart(...)
dev.off()
}
Regards,
Andrew C. Ward
CAPE Centre
Department of Chemical Engineering
The University of Queensland
Brisbane Qld 4072 Australia
andreww at cheque.uq.edu.au
Quoting Erwan BARRET <erwan.barret at wanadoo.fr>:
> I've seen that there's an history for graphics.
> How can I save it manually?
> Can I save more than 4 plots?
> I'm using R1.6.2 under win98
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-help
>