我在Linux CentOS盒子上,我试图使用Rprofile.site
文件在启动时将变量传递给在盒子上初始化R的任何用户。变量没有通过,我正在寻找帮助进行故障排除。
R home:
-sh-4.2$ R RHOME
/usr/lib64/R
/ usr / lib64 / R / etc的内容:
-sh-4.2$ pwd
/usr/lib64/R/etc
-sh-4.2$ ls -l
total 32
-rw-r--r-- 1 root root 165 Mar 8 2017 javaconf
-rw-r--r-- 1 root root 832 Apr 13 2017 ldpaths
-rw-r--r-- 1 root root 7705 Apr 13 2017 Makeconf
-rw-r--r-- 1 root root 1671 Jan 18 17:08 Renviron
-rw-r--r-- 1 root root 35 Jan 18 17:10 Renviron.site
-rw-r--r-- 1 root root 1161 Mar 8 2017 repositories
-rw-r--r-- 1 root root 1203 Jan 18 17:12 Rprofile.site
Rprofile.site的内容:
-sh-4.2$ cat Rprofile.site
local({
variable_1 <- "variable goes here"
variable_2 <- "variable goes here"
})
我在这里缺少什么?