[R] timer in R?

2009-07-01 Thread Michael
Hi all, How could I set a timer in R, so that at fixed interval, the R program will invoke some other functions to run some tasks? Thank you very much! __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read

Re: [R] timer in R?

2009-07-01 Thread Michael
wrote: Hi all, How could I set a timer in R, so that at fixed interval, the R program will invoke some other functions to run some tasks? Thank you very much! __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help

Re: [R] timer in R?

2009-07-01 Thread Barry Rowlingson
On Wed, Jul 1, 2009 at 8:41 PM, Michaelcomtech@gmail.com wrote: Hi all, How could I set a timer in R, so that at fixed interval, the R program will invoke some other functions to run some tasks? Use timer events in the tcltk package: z=function(){cat(Hello you!\n);tcl(after,1000,z

Re: [R] timer in R?

2009-07-01 Thread Philippe Grosjean
Barry Rowlingson wrote: On Wed, Jul 1, 2009 at 8:41 PM, Michaelcomtech@gmail.com wrote: Hi all, How could I set a timer in R, so that at fixed interval, the R program will invoke some other functions to run some tasks? Use timer events in the tcltk package: z=function(){cat(Hello you