[R] creating a ps. file
Uwe Ligges
ligges at statistik.uni-dortmund.de
Mon Mar 15 15:07:30 CET 2004
mike.campana at freesurf.ch wrote:
> Dear all
>
> I wrote a routine. At the end of each cycle of the loop I would like to
> save the result (plot) in a postcriptfile.
> Of course if I just use dev.print in the following way:
> dev.print(device=postcript, 'c:/Rfigures/plot_1.ps")
> I overwrite my results with the second cycle of the loop. I suppose
> there is a way to define the file name so that several plots are
> created(plot_1,plot_2...).
Two comments:
a) You might want to use postscript() directly with its argument
onefile=FALSE.
b) construct the filename with an index you are using in the loop (say "i"):
dev.print(device=postscript,
file = paste("c:/Rfigures/plot_", i, ".ps", sep = ""))
Uwe Ligges
> Could you give me an advice? Thanks a lot
>
> Best Regards
> Mike
>
> ---
> ---
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
More information about the R-help
mailing list