Rev 90027 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/Startup.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2021 R Core Team% Distributed under GPL 2 or later\name{Startup}\alias{Startup}\alias{Rprofile}\alias{.Rprofile}\alias{Rprofile.site}\alias{Renviron}\alias{Renviron.site}\alias{.Renviron}\alias{.First}\alias{.First.sys}\alias{.OptRequireMethods}\concept{environment variable}\alias{R_DEFAULT_PACKAGES}\alias{R_ENVIRON}\alias{R_ENVIRON_USER}\alias{R_PROFILE}\alias{R_PROFILE_USER}\title{Initialization at Start of an R Session}\description{In \R, the startup mechanism is as follows.Unless \option{--no-environ} was given on the command line, \Rsearches for site and user files to process for setting environmentvariables. The name of the site file is the one pointed to by theenvironment variable \env{R_ENVIRON}; if this is unset,\file{\var{\link{R_HOME}}/etc/Renviron.site} is used (if it exists,which it does not in a \sQuote{factory-fresh} installation). The nameof the user file can be specified by the \env{R_ENVIRON_USER}environment variable; if this is unset, the files searched for are\file{.Renviron} in the current or in the user's home directory (inthat order). See \sQuote{Details} for how the files are read.Then \R searches for the site-wide startup profile file of \R codeunless the command line option \option{--no-site-file} was given. Thepath of this file is taken from the value of the \env{R_PROFILE}environment variable (after \link{tilde expansion}). If this variableis unset, the default is \file{\var{\link{R_HOME}}/etc/Rprofile.site},which is used if it exists#ifdef unix(which it does not in a \sQuote{factory-fresh} installation).#endif#ifdef windows(it contains settings from the installer in a \sQuote{factory-fresh}installation).#endifThis code is sourced into the workspace (global environment). Users needto be careful not to unintentionally create objects in the workspace, andit is normally advisable to use \code{\link{local}} if code needs to beexecuted: see the examples. \code{.Library.site} may be assigned to andthe assignment will effectively modify the value of the variable in thebase namespace where \code{\link{.libPaths}()} finds it. One may alsoassign to \code{.First} and \code{.Last}, but assigning to other variablesin the execution environment is not recommended and does not work insome older versions of \R.Then, unless \option{--no-init-file} was given, \R searches for a userprofile, a file of \R code. The path of this file can be specified bythe \env{R_PROFILE_USER} environment variable (and\link{tilde expansion} will be performed). If this is unset, a filecalled \file{.Rprofile} is searched for in the current directory or inthe user's home directory (in that order). The user profile file issourced into the workspace.Note that when the site and user profile files are sourced only the\pkg{base} package is loaded, so objects in other packages need to bereferred to by e.g.\sspace{}\code{utils::dump.frames} or after explicitlyloading the package concerned.\R then loads a saved image of the user workspace from \file{.RData}in the current directory if there is one (unless\option{--no-restore-data} or \option{--no-restore} was specified onthe command line).Next, if a function \code{.First} is found on the search path,it is executed as \code{.First()}. Finally, function\code{.First.sys()} in the \pkg{base} package is run. This calls\code{\link{require}} to attach the default packages specified by\code{\link{options}("defaultPackages")}. If the \pkg{methods}package is included, this will have been attached earlier (by function\code{.OptRequireMethods()}) so that namespace initializations suchas those from the user workspace will proceed correctly.A function \code{.First} (and \code{\link{.Last}}) can be defined inappropriate \file{.Rprofile} or \file{Rprofile.site} files or havebeen saved in \file{.RData}. If you want a different set of packagesthan the default ones when you start, insert a call to\code{\link{options}} in the \file{.Rprofile} or \file{Rprofile.site}file. For example, \code{options(defaultPackages = character())} willattach no extra packages on startup (only the \pkg{base} package) (orset \code{R_DEFAULT_PACKAGES=NULL} as an environment variable beforerunning \R). Using \code{options(defaultPackages = "")} or\code{R_DEFAULT_PACKAGES=""} enforces the R \emph{system} default.On front-ends which support it, the commands history is read from thefile specified by the environment variable \env{R_HISTFILE} (default\file{.Rhistory} in the current directory) unless\option{--no-restore-history} or \option{--no-restore} was specified.The command-line option \option{--vanilla} implies\option{--no-site-file}, \option{--no-init-file},\option{--no-environ} and (except for \command{R CMD})\option{--no-restore}#ifdef windowsUnder Windows, it also implies \option{--no-Rconsole}, whichprevents loading the \file{\link{Rconsole}} file.#endif}\details{Note that there are two sorts of files used in startup:\emph{environment files} which contain lists of environment variablesto be set, and \emph{profile files} which contain \R code.Lines in a site or user environment file should be either commentlines starting with \samp{#}, or lines of the form\code{\var{name}=\var{value}}. The latter sets the environmentalvariable \code{\var{name}} to \code{\var{value}}, overriding anexisting value. If \code{\var{value}} contains an expression of theform \samp{${foo-bar}}, the value is that of the environmentalvariable \samp{foo} if that is set, otherwise \samp{bar}. For\samp{${foo:-bar}}, the value is that of \samp{foo} if that is set toa non-empty value, otherwise \samp{bar}. (If it is of the form\samp{${foo}}, the default is \code{""}.) This construction can benested, so \code{bar} can be of the same form (as in\samp{${foo-${bar-blah}}}). Note that the braces are essential: forexample \samp{$HOME} will not be interpreted.Leading and trailing white space in \code{\var{value}} are stripped.\code{\var{value}} is then processed in a similar way to a Unix shell:in particular (single or double) quotes not preceded by backslashare removed and backslashes are removed except inside such quotes.For readability and future compatibility it is recommended to only useconstructs that have the same behavior as in a Unix shell. Hence,expansions of variables should be in double quotes (e.g.\samp{"${HOME}"}, in case they may contain a backslash) and literalsincluding a backslash should be in single quotes. If a variable valuemay end in a backslash, such as \code{PATH} on Windows, it may benecessary to protect the following quote from it, e.g. \samp{"${PATH}/"}.It is recommended to use forward slashes instead of backslashes.It is ok to mix text in single and double quotes, see examples below.On systems with sub-architectures (mainly Windows), thefiles \file{Renviron.site} and \file{Rprofile.site} are looked forfirst in architecture-specific directories,e.g.\sspace{}\file{\var{\link{R_HOME}}/etc/i386/Renviron.site}.And e.g.\sspace{}\file{.Renviron.i386} will be used in preferenceto \file{.Renviron}.There is a 100,000 byte limit on the length of a line (after expansions)in environment files.}\note{It is not intended that there be interaction with the user duringstartup code. Attempting to do so can crash the \R process.#ifdef unixOn Unix versions of \R there is also a file\file{\var{\link{R_HOME}}/etc/Renviron} which is read very early inthe start-up processing. It contains environment variables set by \Rin the configure process. Values in that file can be overridden insite or user environment files: do not change\file{\var{\link{R_HOME}}/etc/Renviron} itself. Note that this isdistinct from \file{\var{\link{R_HOME}}/etc/Renviron.site}.Command-line options may well not apply to alternative front-ends:they do not apply to \command{R.app} on macOS.#endif#ifdef windowsThe startup options are for \command{Rgui}, \command{Rterm} and\code{R} but not for \command{Rcmd}: attempting to usee.g.\sspace{}\option{--vanilla} with the latter will give a warning or error.Unix versions of \R have a file \file{\var{\link{R_HOME}}/etc/Renviron}which is read very early in the start-up processing. It containsenvironment variables set by \R in the configure process, and is notused on \R for Windows.#endif\command{R CMD check} and \command{R CMD build} do not always read thestandard startup files, but they do always read specific\samp{Renviron} files. The location of these can be controlled by theenvironment variables \env{R_CHECK_ENVIRON} and \env{R_BUILD_ENVIRON}.If these are set their value is used as the path for the\samp{Renviron} file; otherwise, files \file{~/.R/check.Renviron} or\file{~/.R/build.Renviron} or sub-architecture-specific versions areemployed.If you want \file{~/.Renviron} or \file{~/.Rprofile} to be ignored bychild \R processes (such as those run by \command{R CMD check} and\command{R CMD build}), set the appropriate environment variable\env{R_ENVIRON_USER} or \env{R_PROFILE_USER} to (if possible, which itis not on Windows) \code{""} or to the name of a non-existent file.%% Prior to \R 4.0.0, \code{${foo-bar}} in an environment file skipped an%% empty \code{foo}: this has been changed to match the POSIX rules for%% parameter substitution in shells.}%% R_PROFLE_USER is used in src/unix/sys-unix.c and src/gnuwin32/sys-win32.c%% R_ENVIRON, R_ENVIRON_USER are used in src/main/Renviron.c%% R_PROFILE is used in src/main/startup.c\seealso{For the definition of the \sQuote{home} directory on Windows see\manual{rw-FAQ}{What are HOME and working directories?}.\code{\link{.Last}} for final actions at the close of an \R session.\code{\link{commandArgs}} for accessing the command line arguments.There are examples of using startup files to set defaults for graphicsdevices in the help for#ifdef windows\code{\link{windows.options}}.#endif#ifdef unix\code{\link{X11}} and \code{\link{quartz}}.#endif\manual{R-intro}{Invoking R from the command line}for more command-line options: those affecting memory management arecovered in \code{?\link{Memory}}.\code{\link{readRenviron}} to read \file{.Renviron} files.For profiling code, see \code{\link{Rprof}}.}\examples{\dontrun{## Example ~/.Renviron on UnixR_LIBS=~/R/libraryPAGER=/usr/local/bin/less## Example .Renviron on WindowsR_LIBS=C:/R/libraryMY_TCLTK="c:/Program Files/Tcl/bin"# Variable expansion in double quotes, string literals with backslashes in# single quotes.R_LIBS_USER="${APPDATA}"'\R-library'## Example of setting R_DEFAULT_PACKAGES (from R CMD check)R_DEFAULT_PACKAGES='utils,grDevices,graphics,stats'# this loads the packages in the order given, so they appear on# the search path in reverse order.## Example of .Rprofileoptions(width=65, digits=5)options(show.signif.stars=FALSE)setHook(packageEvent("grDevices", "onLoad"),function(...) grDevices::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.sitelocal({# add MASS to the default packages, set a CRAN mirrorold <- getOption("defaultPackages"); r <- getOption("repos")r["CRAN"] <- "http://my.local.cran"options(defaultPackages = c(old, "MASS"), repos = r)## (for Unix terminal users) set the width from COLUMNS if setcols <- Sys.getenv("COLUMNS")if(nzchar(cols)) options(width = as.integer(cols))# interactive sessions get a fortune cookie (needs fortunes package)if (interactive())fortunes::fortune()})## if .Renviron containsFOOBAR="coo\bar"doh\\ex"abc\"def'"## then we get# > cat(Sys.getenv("FOOBAR"), "\n")# coo\bardoh\exabc"def'}}\keyword{environment}