我开始在R中使用项目。
我已将“全局选项”中的默认工作目录设置为
X:/用户/示例/ R
但是,当我打开R并单击打开的项目时,我将在标准Windows文件夹“此PC /文档”中查找。
奇怪,因为我的RProfile.site已将我的工作目录正确设置为“ X:/ Users / example / R”
当打开R时,它似乎可以正常工作,因为getwd()会返回X:/ Users / example / R,并且只要我不单击打开的项目就可以正常工作。
我在做什么错?当我单击打开的项目时,如何将默认目录设置为X:/ Users / example / R?
这是我的.RProfile.site
# set the default help type
options(help_type="html")
main.dir <- 'X:/Users/example/R'
setwd(main.dir)
options(max.print=2000)
# set a CRAN mirror
local({
r <- getOption("repos")
r["CRAN"] <- "https://cran.cnr.berkeley.edu/"
options(repos = r)
})
Jorgen