set_pb {immunarch} | R Documentation |
Set and update progress bars
Description
Set and update progress bars
Usage
set_pb(.max)
add_pb(.pb, .value = 1)
Arguments
.max |
Integer. Maximal value of the progress bar. |
.pb |
Progress bar object from |
.value |
Numeric. Value to add to the progress bar at each step. |
Value
An updated progress bar.
Developer Examples
pb <- immunarch:::set_pb(100) immunarch:::add_pb(pb, 25) immunarch:::add_pb(pb, 25) immunarch:::add_pb(pb, 25) immunarch:::add_pb(pb, 25) close(pb)
[Package immunarch version 0.9.1 Index]