eps                 package:R.utils                 R Documentation

_E_P_S _g_r_a_p_h_i_c_s _d_e_v_i_c_e

_D_e_s_c_r_i_p_t_i_o_n:

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

_U_s_a_g_e:

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

_A_r_g_u_m_e_n_t_s:

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

_V_a_l_u_e:

     A plot device is opened; nothing is returned.

_A_u_t_h_o_r(_s):

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

_S_e_e _A_l_s_o:

     'postscript'.

_E_x_a_m_p_l_e_s:

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

