Startup                 package:base                 R Documentation

_I_n_i_t_i_a_l_i_z_a_t_i_o_n _a_t _S_t_a_r_t _o_f _a_n _R _S_e_s_s_i_o_n

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

     In R, the startup mechanism is as follows.

     Unless '--no-environ' was given on the command line, R searches
     for user and site files to process for setting environment
     variables.  The name of the site file is the one pointed to by the
     environment variable 'R_ENVIRON'; if this is unset or empty,
     '$R_HOME/etc/Renviron.site' is used (if it exists, which it does
     not in a "factory-fresh" installation). The user files searched
     for are '.Renviron' in the current or in the user's home directory
     (in that order). See *Details* for how the files are read.

     Then R searches for the site-wide startup profile unless the
     command line option '--no-site-file' was given.  The name of this
     file is taken from the value of the 'R_PROFILE' environment
     variable. If this variable is unset, the default is
     '$R_HOME/etc/Rprofile.site', which is used if it exists (which it
     does not in a "factory-fresh" installation). This code is loaded
     into package 'base'.  Users need to be careful not to
     unintentionally overwrite objects in base, and it is normally
     advisable to use 'local' if code needs to be executed: see the
     examples.

     Then, unless '--no-init-file' was given, R searches for a file
     called '.Rprofile' in the current directory or in the user's home
     directory (in that order) and sources it into the user workspace.

     It then loads a saved image of the user workspace from '.RData' if
     there is one (unless '--no-restore-data' was specified, or
     '--no-restore', on the command line).

     Next, if a function '.First' is found on the search path, it is
     executed as '.First()'. Finally, function '.First.sys()' in the
     'base' package is run. This calls 'require' to attach the default
     packages specified by 'options("defaultPackages")'.

     A function '.First' (and '.Last') can be defined in appropriate
     '.Rprofile' or 'Rprofile.site' files or have been saved in
     '.RData'.  If you want a different set of packages than the
     default ones when you start, insert a call to 'options' in the
     '.Rprofile' or 'Rprofile.site' file.  For example,
     'options(defaultPackages = character())' will attach no extra
     packages on startup.  Alternatively, set 'R_DEFAULT_PACKAGES=NULL'
     as an environment variable before running R.  Using
     'options(defaultPackages = "")' or 'R_DEFAULT_PACKAGES=""'
     enforces the R _system_ default.

     The commands history is read from the file specified by the
     environment variable 'R_HISTFILE' (default '.Rhistory') unless
     '--no-restore-history' was specified (or '--no-restore').

     The command-line flag '--vanilla' implies '--no-site-file',
     '--no-init-file', '--no-restore' and '--no-environ'.

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

     .First <- function() { ...... }

     .Rprofile <startup file>

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

     Note that there are two sorts of files used in startup:
     _environment files_ which contain lists of environment variables
     to be set, and _profile files_ which contain R code.

     Lines in a site or user environment file should be either comment
     lines starting with '#', or lines of the form 'name=value'. The
     latter sets the environmental variable 'name' to 'value',
     overriding an existing value.  If 'value' is of the form
     '${foo-bar}', the value is that of the environmental variable
     'foo' if that exists and is set to a non-empty value, otherwise
     'bar'.  This construction can be nested, so 'bar' can be of the
     same form (as in '${foo-${bar-blah}}').

     Leading and trailing white space in 'value' are stripped. 'value'
     is processed in a similar way to a Unix shell.  In particular
     quotes are stripped, and backslashes are removed except inside
     quotes.

_H_i_s_t_o_r_i_c_a_l _n_o_t_e_s:

     Prior to R version 1.4.0, the environment files searched were
     '.Renviron' in the current directory, the file pointed to by
     'R_ENVIRON' if set, and '.Renviron' in the user's home directory.

     Prior to R version 1.2.1, '.Rprofile' was sourced after '.RData'
     was loaded, although the documented order was as here.

     The format for site and user environment files was changed in
     version 1.2.0.  Older files are quite likely to work but may
     generate warnings on startup if they contained unnecessary
     'export' statements.

     Values in environment files were not processed prior to version
     1.4.0.

_N_o_t_e:

     The file '$R_HOME/etc/Renviron' is always read very early in the
     start-up processing.  It contains environment variables set by R
     in the configure process.  Values in that file can be overriden in
     site or user environment files: do not change
     '$R_HOME/etc/Renviron' itself.

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

     '.Last' for final actions before termination.

     _An Introduction to R_ for more command-line options: those
     affecting memory management are covered in the help file for
     Memory.

     For profiling code, see 'Rprof'.

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

     ## Not run: 
     # Example ~/.Renviron on Unix
     R_LIBS=~/R/library
     PAGER=/usr/local/bin/less

     # Example .Renviron on Windows
     R_LIBS=C:/R/library
     MY_TCLTK=yes
     TCL_LIBRARY=c:/packages/Tcl/lib/tcl8.4

     # Example of .Rprofile
     options(width=65, digits=5)
     options(show.signif.stars=FALSE)
     ps.options(horizontal=FALSE)
     set.seed(1234)
     .First <- function() cat("\n   Welcome to R!\n\n")
     .Last <- function()  cat("\n   Goodbye!\n\n")

     # Example of Rprofile.site
     local({
       old <- getOption("defaultPackages")
       options(defaultPackages = c(old, "MASS"))
     })

     ## if .Renviron contains
     FOOBAR="coo\bar"doh\ex"abc\"def'"

     ## then we get
     > cat(Sys.getenv("FOOBAR"), "\n")
     coo\bardoh\exabc"def'
     ## End(Not run)

