makeProgressBar {BBmisc} | R Documentation |
Create a progress bar function that displays the estimated time till
completion and optional messages. Call the returned functions set
or
inc
during a loop to change the display.
Note that you are not allowed to decrease the value of the bar.
If you call these function without setting any of the arguments
the bar is simply redrawn with the current value.
For errorhandling use error
and have a look at the example below.
You can globally change the behavior of all bars by setting the option
options(BBmisc.ProgressBar.style)
either to “text” (the default)
or “off”, which display no bars at all.
You can globally change the width of all bars by setting the option
options(BBmisc.ProgressBar.width)
. By default this is getOption("width")
.
You can globally set the stream where the output of the bar is directed by setting the option
options(BBmisc.ProgressBar.stream)
either to “stderr” (the default)
or “stdout”. Note that using the latter will result in the bar being shown in
reports generated by Sweave or knitr, what you probably do not want.
makeProgressBar(min = 0, max = 100, label = "", char = "+")
min |
[ |
max |
[ |
label |
[ |
char |
[ |
[ProgressBar
]. A list with following functions:
set [ |
Set the bar to a value and possibly display a message instead of the label. |
inc [ |
Increase the bar and possibly display a message instead of the label. |
kill [ |
Kill the bar so it cannot be used anymore. Cursor is moved to new line. You can also erase its display. |
error [ |
Useful in |
bar = makeProgressBar(max = 5, label = "test-bar")
for (i in 0:5) {
bar$set(i)
Sys.sleep(0.2)
}
bar = makeProgressBar(max = 5, label = "test-bar")
for (i in 1:5) {
bar$inc(1)
Sys.sleep(0.2)
}
# display errors properly (in next line)
## Not run:
##D f = function(i) if (i>2) stop("foo")
##D bar = makeProgressBar(max = 5, label = "test-bar")
##D for (i in 1:5) {
##D tryCatch ({
##D f(i)
##D bar$set(i)
##D }, error = bar$error)
##D }
## End(Not run)