progressbar: Progress Bar

View source: R/utils.R

progressbarR Documentation

Progress Bar

Description

Wrapper around txtProgressBar

Usage

progressbar(limit)

Arguments

limit

maximum point of the progress bar (integer)

Details

Will start the progress bar at 0 and go up to limit specified. Uses the 3rd style in txtProgressBar.

Value

txtProgressBar object

See Also

update.txtProgressBar end.txtProgressBar

Examples

n <- 10
pb <- progressbar(10)
for (i in 1:n) {
Sys.sleep(1)
update(pb, i)
}
end(pb)

czarrar/niftir documentation built on April 19, 2022, 3:35 a.m.