eps
From R.utils v1.6.2
by Henrik Bengtsson
EPS graphics device
Device driver for Encapsulated Postscript. This driver is the same as the postscript driver where some arguments have different default values.
- Keywords
- device
Usage
eps(file="Rplot%03d.eps", horizontal=FALSE, paper="special", ...)
Arguments
Value
- A plot device is opened; nothing is returned.
See Also
Examples
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")
Community examples
Looks like there are no examples yet.