Rev 39314 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
### This is the system Rprofile file. It is always run on startup.### Additional commands can be placed in site or user Rprofile files### (see ?Rprofile).### Notice that it is a bad idea to use this file as a template for### personal startup files, since things will be executed twice and in### the wrong environment since user profiles are run in .GlobalEnv..GlobalEnv <- globalenv()attach(NULL, name = "Autoloads").AutoloadEnv <- as.environment(2)assign(".Autoloaded", NULL, env = .AutoloadEnv)T <- TRUEF <- FALSER.version <- structure(R.Version(), class = "simple.list")version <- R.version # for S compatibility## for backwards compatibility onlyR.version.string <- R.version$version.string## NOTA BENE: options() for non-base package functionality are in places like## --------- ../utils/R/zzz.Roptions(keep.source = interactive())options(warn = 0)# options(repos = c(CRAN="@CRAN@"))# options(BIOC = "http://www.bioconductor.org")options(timeout = 60)options(encoding = "native.enc")options(show.error.messages = TRUE)## keep in sync with PrintDefaults() in ../../main/print.c :options(scipen = 0)options(max.print = 99999)# max. #{entries} in internal printMatrix()options(add.smooth = TRUE)# currently only used in 'plot.lm'options(stringsAsFactors = TRUE)local({dp <- as.vector(Sys.getenv("R_DEFAULT_PACKAGES"))if(identical(dp, "")) # marginally faster to do methods lastdp <- c("datasets", "utils", "grDevices", "graphics","stats", "methods")else if(identical(dp, "NULL")) dp <- character(0)else dp <- strsplit(dp, ",")[[1]]dp <- sub("[[:blank:]]*([[:alnum:]]+)", "\\1", dp) # strip whitespaceoptions(defaultPackages = dp)}).First.sys <- function(){for(pkg in getOption("defaultPackages")) {res <- require(pkg, quietly = TRUE, warn.conflicts = FALSE,character.only = TRUE, save = FALSE)if(!res)warning("package ", pkg,' in options("defaultPackages") was not found', call.=FALSE)}}