options                 package:base                 R Documentation

_O_p_t_i_o_n_s _S_e_t_t_i_n_g_s

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

     Allow the user to set and examine a variety of global "options"
     which affect the way in which R computes and displays its results.

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

     options(...)

     getOption(x)

     .Options

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

     ...: any options can be defined, using 'name = value' or by
          passing a list of such tagged values.  However, only the ones
          below are used in "base R". Further, 'options('name') ==
          options()['name']', see the example. 

       x: a character string holding an option name.

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

     Invoking 'options()' with no arguments returns a list with the
     current values of the options.  Note that not all options listed
     below are set initially.  To access the value of a single option,
     one should use 'getOption("width")', e.g., rather than
     'options("width")' which is a _list_ of length one.

     '.Options' also always contains the 'options()' list (as a
     pairlist), for S compatibility.  You must use it "read only"
     however.

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

     For 'options', a list (in any case) with the previous values of
     the options changed, or all options when no arguments were given.

_O_p_t_i_o_n_s _u_s_e_d _i_n _b_a_s_e _R:

     '_p_r_o_m_p_t': a string, used for R's prompt; should usually end in a
          blank ('" "').

     '_c_o_n_t_i_n_u_e': a string setting the prompt used for lines which
          continue over one line.

     '_w_i_d_t_h': controls the number of characters on a line. You may want
          to change this if you re-size the window that R is running
          in.  Valid values are 10...10000 with default normally 80. 
          (The valid values are in file 'Print.h' and can be changed by
          re-compiling R.)

     '_d_i_g_i_t_s': controls the number of digits to print when printing
          numeric values.  It is a suggestion only.  Valid values are
          1...22 with default 7.  See 'print.default'.

     '_e_d_i_t_o_r': sets the default text editor, e.g., for 'edit'.  Set
          from the environment variable 'VISUAL' on UNIX.

     '_p_a_g_e_r': the (stand-alone) program used for displaying ASCII files
          on R's console, also used by 'file.show' and sometimes
          'help'. Defaults to '$R_HOME/bin/pager'.


     '_b_r_o_w_s_e_r': default HTML browser used by 'help.start()' on UNIX, or
          a non-default browser on Windows.

     '_p_d_f_v_i_e_w_e_r': default PDF viewer.  Set from the environment
          variable 'R_PDFVIEWER'.

     '_m_a_i_l_e_r': default mailer used by 'bug.report()'.  Can be '"none"'.

     '_c_o_n_t_r_a_s_t_s': the default 'contrasts' used in model fitting such as
          with 'aov' or 'lm'. A character vector of length two, the
          first giving the function to be used with unordered factors
          and the second the function to be used with ordered factors.

     '_d_e_f_a_u_l_t_P_a_c_k_a_g_e_s': the packages that are attached by default when
          R starts up.  Initially set from value of the environment
          variables 'R_DefaultPackages', or if that is unset to
          'c("utils", "stats", "graphics", "methods")'.  (Set
          'R_DEFAULT_PACKAGES' to 'NULL' or a comma-separated list of
          package names.)  A call to 'options' should be in your
          '.Rprofile' file to ensure that the change takes effect
          before the base package is initialized (see 'Startup').

     '_e_x_p_r_e_s_s_i_o_n_s': sets a limit on the number of nested expressions
          that will be evaluated. Valid values are 25...500000 with
          default 5000.

     '_k_e_e_p._s_o_u_r_c_e': When 'TRUE', the source code for functions (newly
          defined or loaded) is stored in their '"source"' attribute
          (see 'attr') allowing comments to be kept in the right
          places.

          The default is 'interactive()', i.e., 'TRUE' for interactive
          use.

     '_k_e_e_p._s_o_u_r_c_e._p_k_g_s': As for 'keep.source', for functions in
          packages loaded by 'library' or 'require'.  Defaults to
          'FALSE' unless the environment variable 'R_KEEP_PKG_SOURCE'
          is set to 'yes'.

     '_n_a._a_c_t_i_o_n': the name of a function for treating missing values
          ('NA''s) for certain situations.

     '_p_a_p_e_r_s_i_z_e': the default paper format used by 'postscript';  set
          by environment variable 'R_PAPERSIZE' when R is started and
          defaulting to '"a4"' if that is unset or invalid.

     '_p_r_i_n_t_c_m_d': the command used by 'postscript' for printing; set by
          environment variable 'R_PRINTCMD' when R is started.  This
          should be a command that expects either input to be piped to
          'stdin' or to be given a single filename argument.


     '_l_a_t_e_x_c_m_d, _d_v_i_p_s_c_m_d': character strings giving commands to be used
          in off-line printing of help pages.

     '_s_h_o_w._s_i_g_n_i_f._s_t_a_r_s, _s_h_o_w._c_o_e_f._P_v_a_l_u_e_s': logical, affecting P value
          printing, see 'printCoefmat'.

     '_t_s._e_p_s': the relative tolerance for certain time series ('ts')
          computations.

     '_e_r_r_o_r': either a function or an expression governing the handling
          of non-catastrophic errors such as those generated by 'stop'
          as well as by signals and internally detected errors.  If the
          option is a function, a call to that function, with no
          arguments, is generated as the expression.  The default value
          is 'NULL': see 'stop' for the behaviour in that case.  The
          function 'dump.frames' provides one alternative that allows
          post-mortem debugging.

     '_s_h_o_w._e_r_r_o_r._m_e_s_s_a_g_e_s': a logical.  Should error messages be
          printed?  Intended for use with 'try' or a user-installed
          error handler.

     '_w_a_r_n': sets the handling of warning messages.  If 'warn' is
          negative all warnings are ignored.  If 'warn' is zero (the
          default) warnings are stored until the top-level function
          returns.  If fewer than 10 warnings were signalled they will
          be printed otherwise a message saying how many (max 50) were
          signalled.  A top-level variable called 'last.warning' is
          created and can be viewed through the function 'warnings'. 
          If 'warn' is one, warnings are printed as they occur.  If
          'warn' is two or larger all warnings are turned into errors.

     '_w_a_r_n_i_n_g._l_e_n_g_t_h': sets the truncation limit for error and warning
          messages.  A non-negative integer, with allowed values
          100-8192, default 1000.

     '_w_a_r_n_i_n_g._e_x_p_r_e_s_s_i_o_n': an R code expression to be called if a
          warning is generated, replacing the standard message.  If
          non-null it is called irrespective of the value of option
          'warn'.

     '_c_h_e_c_k._b_o_u_n_d_s': logical, defaulting to 'FALSE'.  If true, a
          warning is produced whenever a "generalized vector" (atomic
          or 'list') is extended, by something like 'x <- 1:3; x[5] <-
          6'.

     '_e_c_h_o': logical.  Only used in non-interactive mode, when it
          controls whether input is echoed.  Command-line option
          '-slave' sets this initially to 'FALSE'.

     '_m_a_x._p_r_i_n_t': integer, defaulting to '10000'. 'print' or 'show'
          methods can make use of this option, to limit the amount of
          information that is printed, typically to something in the
          order 'max.print' lines.

          This is not yet used in base R.


     '_v_e_r_b_o_s_e': logical.  Should R report extra information on
          progress?  Set to 'TRUE' by the command-line option
          '-verbose'.

     '_d_e_v_i_c_e': a character string giving the default device for that
          session.  This defaults to the normal screen device (e.g.,
          'x11', 'windows' or 'quartz') for an interactive session, and
          'postscript' in batch use or if a screen is not available.

     '_X_1_1_c_o_l_o_r_t_y_p_e': The default colour type for 'X11' devices.

     '_r_e_p_o_s': The URLs of the repositories for use by
          'update.packages'.  Defaults to 'c(CRAN="@CRAN@")', a value
          that causes some utilities to prompt for a CRAN mirror.  To
          avoid this, use something like
          'options(repos=c(CRAN="http://my.local.cran/R"))'.


     '_p_k_g_T_y_p_e': The default type of packages to be downloaded and
          installed - see 'install.packages'. Possible values are
          '"source"' (the default except under the CRAN Mac OS X build)
          and '"mac.binary"'.


     '_d_o_w_n_l_o_a_d._f_i_l_e._m_e_t_h_o_d': Method to be used for 'download.file'. 
          Currently download methods '"internal"', '"wget"' and
          '"lynx"' are available. There is no default for this option,
          when 'method = "auto"' is chosen: see 'download.file'.

     '_u_n_z_i_p': the command used for unzipping help files. Defaults to
          the value of 'R_UNZIPCMD', which is set in 'etc/Renviron' if
          an 'unzip' command was found during configuration.

     '_d_e._c_e_l_l_w_i_d_t_h': integer: the cell widths (number of characters) to
          be used in the data editor 'dataentry'. If this is unset, 0,
          negative or 'NA', variable cell widths are used.

     '_e_n_c_o_d_i_n_g': An integer vector of length 256 holding an input
          encoding.  Defaults to 'native.enc' (= '0:255'). See
          'connections'.

     '_t_i_m_e_o_u_t': integer.  The timeout for some Internet operations, in
          seconds.  Default 60 seconds. See 'download.file' and
          'connections'.

     '_i_n_t_e_r_n_e_t._i_n_f_o': The minimum level of information to be printed on
          URL downloads etc.  Default is 2, for failure causes. Set to
          1 or 0 to get more information.

     '_s_c_i_p_e_n': integer.  A penalty to be applied when deciding to print
          numeric values in fixed or exponential notation.  Positive
          values bias towards fixed and negative towards scientific
          notation: fixed notation will be preferred unless it is more
          than 'scipen' digits wider.

     '_l_o_c_a_t_o_r_B_e_l_l': logical.  Should selection in 'locator' and
          'identify' be confirmed by a bell.  Default 'TRUE'. Honoured
          at least on 'X11' and 'windows' devices.

     '_X_1_1_f_o_n_t_s': character vector of length 2. See 'X11'.

     The default settings of some of these options are

       'prompt'               '"> "'     'continue'           '"+ "'
       'width'                '80'       'digits'             '7'
       'expressions'          '5000'     'keep.source'        'interactive()'
       'show.signif.stars'    'TRUE'     'show.coef.Pvalues'  'TRUE'
       'na.action'            'na.omit'  'timeout'            '60'
       'ts.eps'               '1e-5'     'error'              'NULL'
       'show.error.messages'  'TRUE'     'warn'               '0'
       'warning.length'       '1000'     'echo'               'TRUE'
       'verbose'              'FALSE'    'scipen'             '0'
       'locatorBell'          'TRUE'                          

     Others are set from environment variables or are
     platform-dependent.

_R_e_f_e_r_e_n_c_e_s:

     Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) _The New S
     Language_. Wadsworth & Brooks/Cole.

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

     options() # printing all current options
     op <- options(); str(op) # nicer printing

     # .Options is the same:
     all(sapply(1:length(op), function(i) if(is.atomic(op[[i]]))
                              {all(.Options[[i]] == op[[i]])} else TRUE))

     options('width')[[1]] == options()$width # the latter needs more memory
     options(digits=20)
     pi

     # set the editor, and save previous value
     old.o <- options(editor="nedit")
     old.o

     options(check.bounds = TRUE)
     x <- NULL; x[4] <- "yes" # gives a warning

     options(digits=5)
     print(1e5)
     options(scipen=3); print(1e5)

     options(op)     # reset (all) initial options
     options('digits')

     ## Not run: 
     ## set contrast handling to be like S
     options(contrasts=c("contr.helmert", "contr.poly"))
     ## End(Not run)
     ## Not run: 
     ## on error, terminate the R session with error status 66
     options(error=quote(q("no", status=66, runLast=FALSE)))
     stop("test it")
     ## End(Not run)
     ## Not run: 
     ## set an error action for debugging: see ?debugger.
     options(error=dump.frames)
     ## A possible setting for non-interactive sessions
     options(error=quote({dump.frames(to.file=TRUE); q()}))
     ## End(Not run)

