How to save R-grafics in eps format
Dear Claudia,
This is how I save the plots as *.eps.
postscript(file="testplot.eps",
paper="special",
width=10,
height=10,
horizontal=FALSE)
yvalues = runif(100)
plot(yvalues)
dev.off()
HTH,
Martin Lam
--- paladini at rz.uni-potsdam.de wrote:
Hello!
I used to save R-Grafics like this:
postscript("file.ps").
Is there alsoa way to save them as eps?
Thank you very much
Claudia
______________________________________________ R-help at stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html