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
Yes, open a postscript() device with a filename ending in .eps, do your plot(s) and call dev.off().
postscript()
.eps
dev.off()