julia_progress {jlmerclusterperm} | R Documentation |
Set/get options for Julia progress bar
Description
Set/get options for Julia progress bar
Usage
julia_progress(show, width)
Arguments
show |
Whether to show the progress bar. You may also pass in a list of |
width |
Width of the progress bar. If |
Value
Previous values for show
and width
Examples
# 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")
[Package jlmerclusterperm version 1.1.4 Index]