我想知道是否有可能创建带有“错误”信息的日志,从而迫使tryCatch进行“错误处理”?
是为了能够获得潜在错误的可见性。我想避免打印。
谢谢!

最佳答案

这将工作:

outputFile <-file("output.txt")
tryCatch({
  --- your code ---
}, error = function(e) {
   writeLines(as.character(e), outputFile)
})

-----------------------------

close(outputFile)

关于r - R : Create a txt file with the error handling of tryCatch,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33409319/

10-11 06:42