Dear R users, given a simple plotting procedure below, how can I make the figures changing on a slower rate (say every 2 sec) for(i in 1:100){ts.plot(rnorm(i))} Best, robert -- View this message in context: http://r.789695.n4.nabble.com/time-my-process-tp4514836p4514836.html Sent from the R help mailing list archive at Nabble.com.
R. Michael Weylandt <michael.weylandt@gmail.com>
2012-Mar-29 13:18 UTC
[R] time my process
?Sys.sleep() or set par(ask=TRUE) Michael On Mar 29, 2012, at 4:43 AM, threshold <r.kozarski at gmail.com> wrote:> Dear R users, > given a simple plotting procedure below, how can I make the figures changing > on a slower rate (say every 2 sec) > > for(i in 1:100){ts.plot(rnorm(i))} > > Best, robert > > -- > View this message in context: http://r.789695.n4.nabble.com/time-my-process-tp4514836p4514836.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.