progressMsg {mapplots} | R Documentation |
Progress message
Description
progress message in the R console.
Usage
setProgressMsg(min = 0, max = 1)
progressMsg(pm, value, round = 0)
Arguments
min , max |
(finite) numeric values for the extremes of the progress message. Must have |
pm |
list created by setProgressMsg |
value |
value for the progress message. |
round |
integer indicating the number of decimal places for the percentage completed. Defaults to 0. |
Details
setProgressMsg
sets up a list with variables used and updated by progressMsg
Value
a list
Author(s)
Hans Gerritsen
See Also
See also txtProgressBar
Examples
## Not run:
pm <- setProgressMsg(0,500)
for(i in 1:500) {
pm<- progressMsg(pm,i)
Sys.sleep(0.01)
}
rm(pm)
## End(Not run)
[Package mapplots version 1.5.2 Index]