Usage
timerProgressBar(min = 0, max = 1, initial = 0, char = "=",
width = NA, title, label, style = 1, file = "")
getTimerProgressBar(pb)
setTimerProgressBar(pb, value, title = NULL, label = NULL)Arguments
min, max
(finite) numeric values for the extremes of the progress bar.
Must have min < max.
initial, value
initial or new value for the progress bar.
See Details for what happens with invalid values.
char
he character (or character string) to form the progress bar.
If number of characters is >1, it is silently stripped to length 1.
width
the width of the progress bar, as a multiple of the width of char.
If NA, the default, the number of characters is that
which fits into getOption("width").
style
the style of the bar, currently ignored (for possible future use).
file
an open connection object or "" which indicates the console.
pb
an object of class "timerProgressBar".
title, label
ignored, for compatibility with other progress bars.