Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够输入q()R 并让 R 退出,而不是提示我是否要退出。
q()
是否有一些代码可以放入我的.Rprofile文件中以实现这一点?
.Rprofile
如果我不必在我的工作区中浮动自定义函数,我会更喜欢。
在您的 Rprofile.site 文件中:
q <- function(save = "yes", status = 0, runLast = TRUE){ .Internal(quit(save, status, runLast)) #<environment: namespace:base> }
使用 R --vanilla 效果更好