julia_progress {jlmerclusterperm} | R Documentation |
Set/get options for Julia progress bar
julia_progress(show, width)
show |
Whether to show the progress bar. You may also pass in a list of |
width |
Width of the progress bar. If |
Previous values for show
and width
# Show current progress options
julia_progress()
# Set options and save previous options
old_progress_opts <- julia_progress(show = FALSE, width = 100)
julia_progress()
# Restoring progress settings by passing a list of old options
old_progress_opts
julia_progress(old_progress_opts)
identical(julia_progress(), old_progress_opts)
# Alternatively, reset to default settings using this syntax:
julia_progress(show = TRUE, width = "auto")