Skip to content
Back to formatted view

Raw Message

Message-ID: <20060201195416.91140.qmail@web34703.mail.mud.yahoo.com>
Date: 2006-02-01T19:54:16Z
From: Martin Lam
Subject: How to save R-grafics in eps format
In-Reply-To: <1138789809.43e08db1cc445@webmail.uni-potsdam.de>

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
>