R区分批处理和交互模式

R distinguishing between batch and interactive mode

我想在我的代码中有一个条件,它允许我区分代码是 运行 批处理模式还是交互模式(通过控制台)。它会是这样的:

if (interactive mode) {do this} else if (Batch mode) {do that}

有办法实现吗? 感谢您的帮助。

您可以使用interactive功能。例如,从终端

执行
Rscript -e 'cat(interactive())'

为我返回了 FALSE,而从我的 RStudio 会话执行 interactive() 时返回了 TRUE