关于R环境的配置

进入Rstudio之后编辑

file.edit('~/.Rprofile')

参考《R语言实战》的脚本进行配置,按照自己的情况有所调整

# Things you might want to change
# 下面是常规设置,包括,默认编辑器、制表符宽度等等
# options(papersize="a4")
# options(tab.width=2)
# options(editor="notepad")
# options(pager="internal")
# set the default help type
# options(help_type="text")
  options(help_type="html")

# 可以设置加载R包时,默认R包所在的目录
.libPaths(c("D:\\R\3.6\\package"))

# set a site library
# 自定义库路径,便于备份
# .Library.site <- file.path(chartr("\\", "/", R.home()), "site-library")
# set a CRAN mirror
# 设置CRAN镜像,选一个最近源,这样安装和更新包时就不用手动选取CRAN镜像了
 local({r <- getOption("repos")
       r["CRAN"] <- "https://mirrors.tuna.tsinghua.edu.cn/CRAN/"
       options(repos=r)})

options(BioC_mirror="http://mirrors.ustc.edu.cn/bioc/")

# Give a fortune cookie, but only to interactive sessions
# (This would need the fortunes package to be installed.)
#  if (interactive())
#    fortunes::fortune()
.First <- function(){
    # 设置R启动时加载的包
    library(TSA)
    library(MASS)
    # 启动时交互,可自定义
    cat("\nWelcome at",date(),"\n")
}

# 退出时交互
.Last <- function(){
    cat("\nGoodnye at",date(),"\n")
}

你可能感兴趣的:(关于R环境的配置)