我在新的 Mac 上安装了 R (2.15.1) 和 RStudio (0.96.316)。现在,每次我获取 R 脚本时,都会收到以下警告消息。不管剧本长什么样。在下一个案例中,我只使用了一个 cat('Hello World) 参数。
> source('~/Documents/R-Files/skript.r')
Hello World
Warnmeldung:
In eval.with.vis(ei, envir) :
.Internal(eval.with.vis) should not be used and will be removed soon
我总是收到与我的代码行相同数量的警告。具有四行输入的脚本会产生四个警告:
> source('~/Documents/R-Files/skript.r')
a Hello World
b Hello World
c Hello World
d Hello World
Warnmeldungen:
1: In eval.with.vis(ei, envir) :
.Internal(eval.with.vis) should not be used and will be removed soon
2: In eval.with.vis(ei, envir) :
.Internal(eval.with.vis) should not be used and will be removed soon
3: In eval.with.vis(ei, envir) :
.Internal(eval.with.vis) should not be used and will be removed soon
4: In eval.with.vis(ei, envir) :
.Internal(eval.with.vis) should not be used and will be removed soon
但是,除了警告消息之外,R 脚本也可以正常工作。
我在R News上找到了以下信息:
- source() 现在使用 withVisible() 而不是 .Internal(eval.with.vis)。这有时会稍微改变回溯。
我认为这是我的问题的原因,但我不知道解决方案。如何禁用或避免警告?