最佳答案
我想将 所有控制台文本重定向到一个文件:
> sink("test.log", type=c("output", "message"))
> a <- "a"
> a
> How come I do not see this in log
Error: unexpected symbol in "How come"
以下是我在 test.log 中得到的内容:
[1] "a"
以下是我在 test.log 中想要的:
> a <- "a"
> a
[1] "a"
> How come I do not see this in log
Error: unexpected symbol in "How come"
我做错了什么? 谢谢!