新的.Rprofile没有在R的开头加载

时间:2014-09-19 03:29:50

标签: r

我最近在.Rprofile中更改了一个声明。这是加载源文件:

source("/home/theuser/olddir/myfile")

此语句位于.Rprofile文件的.First< - function()。

我把它改为:

source("/home/theuser/newdir/myfile")

但是,在启动R时,我收到以下错误消息:

cannot open file '/home/theuser/olddir/myfile': No such file or directory

R仍然查找旧文件。我怎么能纠正这个。谢谢你的帮助。

.Rprofile是:

$ cat .Rprofile

options(tab.width = 2)
options(width = 130)
options(graphics.record=TRUE)
options(show.signif.stars=FALSE)

.First <- function(){
 library(Hmisc)
 #library(R2HTML)
 source("/home/theuser/newdir/myfile")
 cat("\nSuccessfully loaded .Rprofile at", date(), "\n")
}

.Last <- function(){
 cat("\nGoodbye at ", date(), "\n")
}

0 个答案:

没有答案