progress_bar {utils} R Documentation

Create a progress bar helper function

Description

Usage

progress_bar(total,
    width = 45,
    interval = 5);

Arguments

total

[as integer]

width

[as integer]

interval

the progress display internal, should be value in range [1,100]. [as integer]

Details

Authors

SMRUCC genomics Institute

Value

this function returns data object of type ProgressBarFunction.

clr value class

Examples

 let bar = progress_bar(total = 10);
 
 bar("test 1");
 bar("test 2");
 bar("test 3");

[Package utils version 2.33.856.6961 Index]