[R] Progress bar in random forest model

2015-09-23 Thread Mohammad Tanvir Ahamed via R-help
Hi , I am using randomForest model in R . For large number of tree my program takes long time to complete . In "randomForest" function i can use "do.trace=TRUE" to see the real time progress . Sample out put in real time on R console is as follows ntree OOB 1 2 3 4

Re: [R] [SPAM?] R Progress Bar

2014-02-26 Thread Jeff Newmiller
Sorry, I have never used these functions before. There is the msgWindow function, but it works on a graphic device number, and may not work on the external pointer object that winProgressBar returns. --- Jeff Newmiller

Re: [R] R Progress Bar

2014-02-26 Thread Jeff Newmiller
Sys.sleep(0.1) >info <- sprintf("%d%% done", round(i)) >setWinProgressBar(pb, i, sprintf("test (%s)", info), info) >} >Sys.sleep(5) >close(pb) > >Also, tkProgressBar() behaves the same. > > > >-- >View this message in context: >http:/

Re: [R] R Progress Bar

2014-02-26 Thread slomanl1
c(0, sort(runif(20, 0, 100)), 100) for(i in u) { Sys.sleep(0.1) info <- sprintf("%d%% done", round(i)) setWinProgressBar(pb, i, sprintf("test (%s)", info), info) } Sys.sleep(5) close(pb) Also, tkProgressBar() behaves the same. -- View this message in conte

Re: [R] R Progress Bar

2014-02-26 Thread Greg Snow
including any packages loaded, then we will have a better chance at helping you. On Tue, Feb 25, 2014 at 5:37 PM, slomanl1 wrote: > When I run my script, the progress bar is always minimized, and I have to > manually click on it to be visible. Does anyone know how to put an R > progress bar on

[R] R Progress Bar

2014-02-25 Thread slomanl1
When I run my script, the progress bar is always minimized, and I have to manually click on it to be visible. Does anyone know how to put an R progress bar on top once it is created? -- View this message in context: http://r.789695.n4.nabble.com/R-Progress-Bar-tp4685847.html Sent from the R

[R] Progress bar or execution plan for modeling process

2008-05-30 Thread Nagu
Hi, I often run predictive models on large datasets with multiple combination of parameter space. I am wondering if there is any way to quickly check the execution plan, like how much time does it take to run a model. Here is a more specific example: I have a set of datasets, S, of size 4X700

[R] progress bar

2008-02-18 Thread Syed Abid Hussaini
Hi all, I have some functions which sometimes take longer to run and it would be useful to have a progress bar showing how much time is left for the script to finish (something like a download progress bar). I tried searching but could not find it. Is this possible with R? Note: Using R version

Re: [R] progress bar

2008-02-18 Thread Henrique Dallazuanna
See RSiteSearch("Progress Bar") On 18/02/2008, Syed Abid Hussaini <[EMAIL PROTECTED]> wrote: > I have some functions which sometimes take longer to run and it would be > useful to have a progress > bar showing how much time is left for the script to finish (something like a > download progress >

[R] progress bar

2008-02-18 Thread Syed Abid Hussaini
I have some functions which sometimes take longer to run and it would be useful to have a progress bar showing how much time is left for the script to finish (something like a download progress bar). I tried searching but could not find it. Is this possible with R? Note: Using R version: 2.6.1