How do I export a graph to an .eps format file? I typically export my graphs to a .pdf file (using the \'pdf\' function), and it works quite well. However, now I have to exp
The postscript() device allows creation of EPS, but only if you change some of the default values. Read ?postscript for the details.
postscript()
?postscript
Here is an example:
postscript("foo.eps", horizontal = FALSE, onefile = FALSE, paper = "special") plot(1:10) dev.off()