handler_winprogressbar {progressr} | R Documentation |
Progression Handler: Progress Reported as a MS Windows Progress Bars in the GUI
Description
A progression handler for winProgressBar()
in the utils package.
Usage
handler_winprogressbar(
intrusiveness = getOption("progressr.intrusiveness.gui", 1),
target = "gui",
inputs = list(title = NULL, label = "message"),
...
)
Arguments
intrusiveness |
(numeric) A non-negative scalar on how intrusive (disruptive) the reporter to the user. |
target |
(character vector) Specifies where progression updates are rendered. |
inputs |
(named list) Specifies from what sources the MS Windows
progress elements 'title' and 'label' should be updated. Valid sources are
|
... |
Additional arguments passed to |
Requirements
This progression handler requires MS Windows.
Examples
## Not run:
handlers(handler_winprogressbar())
with_progress(y <- slow_sum(1:100))
## End(Not run)