使用动画包

时间:2012-04-02 09:08:40

标签: r rstudio

我是R的新手并尝试使用动画包。从manual开始,我尝试运行此代码段

library(animation)
oopt = ani.options(interval = 0.2, nmax = 10)
## use a loop to create images one by one
for (i in 1:ani.options("nmax")) {
  plot(rnorm(30))
  ani.pause() ## pause for a while (’interval’)
}
## restore the options
ani.options(oopt)

但是我收到了错误:

Error in ani.options(oopt) : object 'oopt' not found

我已安装软件包,我使用的是ver 2.14.2

1 个答案:

答案 0 :(得分:2)

RStudio可以逐行评估您的代码:Ctrl-Enter运行源中光标处的行。您可以在源代码下方的控制台中看到,在这种情况下,只会评估一行。 要运行完整脚本,请使用“全部运行”(Ctrl-Shift-R)。

您也可以直接输入一行代码并按Enter键进行评估,而不是从源代码窗口运行。