eps {R.utils}R Documentation

EPS graphics device

Description

Device driver for Encapsulated Postscript. This driver is the same as the postscript driver where some arguments have different default values.

Usage

eps(file="Rplot%03d.eps", horizontal=FALSE, paper="special", ...)

Arguments

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().

Value

A plot device is opened; nothing is returned.

Author(s)

Henrik Bengtsson (http://www.braju.com/R/)

See Also

postscript.

Examples

## 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)

[Package R.utils version 1.1.1 Index]