Skip to content
Prev 85559 / 398503 Next

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: