Capturing Rscript errors in an output file

强颜欢笑 提交于 2019-11-28 22:11:59

问题


Unlike the similar command R CMD BATCH which by default produces an output file which contains any error messages which would cause the execution of a script to halt, I have not been able to find a way to do this with Rscript. I have tried using a pipe in my linux shell to achieve this:

RScript --no-save --no-restore --verbose myRfile.R > outputFile.Rout

but this will only pipe over any output that occurred before an error occurs, so the file outputFile.R doesn't contain any error information. Does anyone know how to get the capture any errors that occur in executing an R file using RScript and saving it to a file?


回答1:


Rscript --no-save --no-restore --verbose myRfile.R > outputFile.Rout 2> errorFile.Rout

To put the output and error in the same file (assuming sh/bash)

Rscript --no-save --no-restore --verbose myRfile.R > outputFile.Rout 2>&1


来源:https://stackoverflow.com/questions/14008139/capturing-rscript-errors-in-an-output-file

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!