I'm not shure but I guess that you miss a " and putted it in the wrong place! Try this: postscript("/pathto/filename.eps",horizontal=FALSE,onefile=FALSE) Hope It helps. -----Mensagem original----- De: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] Em nome de e-letter Enviada em: segunda-feira, 17 de agosto de 2009 10:11 Para: r-help at r-project.org Assunto: [R] postscript, options Readers, I am not able to create a postscript file with the following command: postscript("/pathto/filename.eps,horizontal=FALSE,onefile="FALSE") A file is not created, instead the command terminal shows the plus sign(+) on a new line: + What does this mean please? rhelp at conference.jabber.org mandriva 2008 r 251 (27-06-07) ______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
On 18/08/2009, Rodrigo Aluizio <r.aluizio at gmail.com> wrote:> I'm not shure but I guess that you miss a " and putted it in the wrong > place! > Try this: postscript("/pathto/filename.eps",horizontal=FALSE,onefile=FALSE) > > Hope It helps.Thank you, that did help a little, but the eps file was faulty and I could not open in either imagemagick or gimp. I found it easier and quicker to copy the graph into gimp, save in png and use imagemagick to convert to eps format.
On 18/08/2009, Stefan Grosse <singularitaet at gmx.net> wrote:> On Tue, 18 Aug 2009 16:08:36 +0100 e-letter <inpost at gmail.com> wrote: > > EL> > > postscript("/pathto/filename.eps",horizontal=FALSE,onefile=FALSE,paper="special") > EL> > > EL> This command created a small blank eps file. > > Its hard to say why without any example code. > > Does > postscript("/pathto/filename.eps",width=8,height=8,horizontal=FALSE,onefile=FALSE,paper="special") > hist(rnorm(100)) > dev.off() > work? >Yes, using the following commands: postscript("/pathto/filename.eps",width=4,height=4,horizontal=FALSE,onefile=FALSE,paper="special") hist(rnorm(100)) dev.off() Command terminal response: X11 2 I opened successfully the file. Thank you.