Devices                 package:base                 R Documentation

_L_i_s_t _o_f _G_r_a_p_h_i_c_a_l _D_e_v_i_c_e_s

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

     The following graphics devices are currently available:

        *  'postscript' Writes PostScript graphics commands to a file

        *  'pdf' Write PDF graphics commands to a file

        *  'pictex' Writes LaTeX/PicTeX graphics commands to a file

        *  'xfig' Device for XFIG graphics file format

        *  'bitmap' bitmap pseudo-device via 'GhostScript' (if
           available).

     The following devices will be available if R was compiled to use
     them and started with the appropriate '--gui' argument:

        *  'X11' The graphics driver for the X11 Window system

        *  'png' PNG bitmap device

        *  'jpeg' JPEG bitmap device

        *  'GTK', 'GNOME' Graphics drivers for the GNOME GUI.

     None of these are available under 'R CMD BATCH'.

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

     X11(...)
     postscript(...)
     pdf(...)
     pictex(...)
     png(...)
     jpeg(...)
     GTK(...)
     GNOME(...)
     xfig(...)
     bitmap(...)

     dev.interactive()

_D_e_t_a_i_l_s:

     If no device is open, using a high-level graphics function will
     cause a device to be opened.  Which device is given by
     'options("device")' which is initially set as the most appropriate
     for each platform: a screen device in interactive use and
     'postscript' otherwise.

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

     'dev.interactive()' returns a logical, 'TRUE' iff an interactive
     (screen) device is in use.

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

     The individual help files for further information on any of the
     devices listed here;

     'dev.cur', 'dev.print', 'graphics.off', 'image', 'dev2bitmap'.

     'capabilities' to see if 'X11', 'jpeg' and 'png' are available.

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

     ## Don't run: 
     ## open the default screen device on this platform if no device is
     ## open
     if(dev.cur() == 1) get(getOption("device"))()
     ## End Don't run

