Re: [R] task percentage completion

2013-05-01 Thread Fabio Berzaghi
so in other words there is no easy way of doing this? I don't want to spend too much time figure out how this progress bar works. I am not clear if the code should run in the main R or where. On 4/30/2013 13:11, R. Michael Weylandt wrote: On Tue, Apr 30, 2013 at 10:40 AM, Fabio Berzaghi

Re: [R] task percentage completion

2013-05-01 Thread R. Michael Weylandt
On Wed, May 1, 2013 at 12:19 PM, Fabio Berzaghi f...@dmu.dk wrote: so in other words there is no easy way of doing this? That's not what I said. It's easy to make a progress bar if you use plyr:e.g., ddply(baseball, .(id), mutate, career_year = year - min(year) + 1, .progress = time) Our

[R] task percentage completion

2013-04-30 Thread Fabio Berzaghi
Dear All, Is it possible to add a percentage completion bar to R? I find it frustrating when running long calculations that I don't know at what point the process is. It would be very helpful so I am not guessing if I should wait a few minutes or hours.

Re: [R] task percentage completion

2013-04-30 Thread Prof Brian Ripley
On 30/04/2013 10:40, Fabio Berzaghi wrote: Dear All, Is it possible to add a percentage completion bar to R? I find it frustrating when running long calculations that I don't know at what point the process is. It would be very helpful so I am not guessing if I should wait a few minutes or

Re: [R] task percentage completion

2013-04-30 Thread R. Michael Weylandt
On Tue, Apr 30, 2013 at 10:40 AM, Fabio Berzaghi f...@dmu.dk wrote: Dear All, Is it possible to add a percentage completion bar to R? I find it frustrating when running long calculations that I don't know at what point the process is. It would be very helpful so I am not guessing if I should