[R] How to save R-grafics in eps format

2006-02-01 Thread paladini
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@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting

Re: [R] How to save R-grafics in eps format

2006-02-01 Thread Peter Dalgaard
[EMAIL PROTECTED] writes: Hello! I used to save R-Grafics like this: postscript(file.ps). Is there alsoa way to save them as eps? from ?postscript: The postscript produced by R is EPS (_Encapsulated PostScript_) compatible, and can be included into other documents, e.g., into

Re: [R] How to save R-grafics in eps format

2006-02-01 Thread Martin Lam
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 --- [EMAIL PROTECTED] wrote: Hello! I