eps: EPS graphics device

Description Usage Arguments Value Author(s) See Also Examples

View source: R/eps.R

Description

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

Usage

1
eps(file="Rplot%03d.ps", 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

A character string.

...

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## 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)

HenrikBengtsson/R.graphics documentation built on May 6, 2019, 11:53 p.m.