pkgmaker (version 0.32.2)

iterCount: Simple Text Iteration Counter

Description

Simple Text Iteration Counter

Usage

iterCount(n = 100, i0 = 0L, title = "Iterations", extra = NULL, verbose = TRUE)

Arguments

n

number of total steps

i0

starting step

title

character string to use as title

extra

character vector providing extra text to add at each step

verbose

logical that toggles the counter

Examples

Run this code
# NOT RUN {
progress <- iterCount(LETTERS)
res <- sapply(LETTERS, function(x){
 Sys.sleep(.1)
	progress()
})
# terminate counter
i_end <- progress(NULL)
i_end 

# }

Run the code above in your browser using DataLab