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 export to .eps files.
Export a graph to .eps file with R
146.8k Views Asked by mStudent At
5
There are 5 best solutions below
0

Yes, open a postscript()
device with a filename ending in .eps
, do your plot(s) and call dev.off()
.
The easiest way I've found to create postscripts is the following, using the
setEPS()
command: