A client needs graphics for a manuscript with .eps format and 800 dpi.
Usually I export to tiff using tiff()
with a res=
argument and everything is good. In fact I've never exported to .eps before so I've been googling around.
I found this, which has gotten me to the .eps file stage (though I currently can't view the file I exported to make sure it looks right). But as far as a quick search via help in R-studio has given me, I can't change the dpi.
Any help? Current code looks much like:
setEPS()
postscript("whatever.eps", width = 7, height = 5)
plot(rnorm(100), main="Hey Some Data")
dev.off()
I'm used to units="in"
, res=800
being included so I don't even feel comfortable with the height and width args I've supplied and can't view the file to make sure it looks right.