| eps {R.utils} | R Documentation |
Device driver for Encapsulated Postscript. This driver is the same as the postscript driver where some arguments have different default values.
eps(file="Rplot%03d.ps", horizontal=FALSE, paper="special", ...)
file |
Default file name (pattern). |
horizontal |
If FALSE, an horizontal EPS file is created,
otherwise a portrait file is created. |
paper |
|
... |
Other arguments accepted by postscript(). |
A plot device is opened; nothing is returned.
Henrik Bengtsson (http://www.braju.com/R/)
## Not run:
eps("foo.eps")
# is identical to
postscript("foo.eps", onefile=TRUE, horizontal=FALSE)
# and
dev.print(eps, "foo.eps")
# is identical to
dev.print(postscript, "foo.eps", onefile=TRUE, horizontal=FALSE, paper="special")
## End(Not run)