尝试使用message
在RStudio中进行一些简单的日志记录。我希望消息有可能以临时文件结尾。
阅读了How can you always suppress messages in R?后,我以为我知道该怎么做。
message("this is red text on screen")
zz <- file("messages.Rout", open = "wt")
sink(file=zz, type = "message")
message("This I hope only goes to the file")
sink(type="message") #Reset so that messages come out to screen as normal
问题是当“当前块”运行时,文本This I hope only goes to the file
仍显示在RStudio的控制台中。
我误会了吗?
在此先感谢您,我已经使用R了一段时间,但经常会遇到新手问题。...