- length
Length of the progress bar. For instance, in a loop it would be the number of iterations to complete.
- remaining
The character (string of unitary length) used to represent operations still to do.
- done
The character (string of unitary length) used to represent operations already completed
- percentage
Logical | Whether to print the percentage progess after the bar. Defaults to TRUE
- message
Logical | Whether to print a message before the progress bar. Defaults to TRUE
- custom.message
Optional message to be printed before the progress bar. Defaults to NULL, which prints simply 'Progress status:',
- trim
How many points to trim from the maximum length of the terminal output. Default to 6L
- print
Logical | Whether to print the progress bar after its initialisation. Defaults to TRUE
- colour
Styling of the progress bar object. It can be a single string, in which case it applies to all the part of the progress bar (message, bar and percentage). It can also be a vector of length 3, in which case each string applies to one of the items (respectively message, bar and percentage). The strings must be taken amongst the following values:
black;
blue;
cyan;
green;
magenta;
red;
white;
yellow.
- bg.colour
Styling of the progress bar object's background. It can be a single string, in which case it applies to all the part of the progress bar (message, bar and percentage). It can also be a vector of length 3, in which case each string applies to one of the items (respectively message, bar and percentage). The strings must be taken amongst the following values:
Black;
Blue;
Cyan;
Green;
Magenta;
Red;
White;
Grey;
Yellow.