http://git.oschina.net/hyg/R.sample/blob/master/1.4.Rprofile
.First <- function(){
library(foreign)
cat("\nWelcome at ",date()," Let's get it done.\n")
}
.Last <- function(){
cat("\nGoodbye at ",date()," Push your job to git repo pls.\n")
}
http://git.oschina.net/hyg/R.sample/blob/master/1.4.md
使用说明[color=rgba(0, 0, 0, 0.8)]1.4.
要求[color=rgba(0, 0, 0, 0.8)]请根据自己需要独立编写初始化文件(Rprofile.site)。阅读其他人的文件,选出一个作为统一要求。
.First- library(foreign) :因为经常要导入stata数据,使用foreign库,所以每次会话开始时就载入。
- cat:只是提示信息。
.Last