如何调用 R 脚本,如下所示
scan()
在 Windows 中?使用R
orRscript
时,不会读取任何内容。使用Rscript
or littler
(都在 Linux 上),脚本按预期工作。
# Doesn't work because stdin is already redirected
R --no-save < test.R
# Works on Linux, doesn't on Windows
Rscript test.R
# Works on Linux, doesn't exist in Windows
r test.R
有没有办法在不更改 R 代码的情况下实现这一点?
--interactive
也许相关:为什么Windows中没有开关?