Description Arguments Details See Also Examples
Reports progress to the user during long-running operations.
session |
The Shiny session object, as provided by
|
min |
The value that represents the starting point of the
progress bar. Must be less than |
max |
The value that represents the end of the progress bar.
Must be greater than |
message |
A single-element character vector; the message to be
displayed to the user, or |
detail |
A single-element character vector; the detail message
to be displayed to the user, or |
value |
Single-element numeric vector; the value at which to set
the progress bar, relative to |
This package exposes two distinct programming APIs for working with
progress. withProgress
and setProgress
together provide a simple function-based interface, while the
Progress
reference class provides an object-oriented API.
Instantiating a Progress
object causes a progress panel to be
created, and it will be displayed the first time the set
method is called. Calling close
will cause the progress panel
to be removed.
Methods
initialize(session, min = 0, max = 1)
Creates a new progress panel (but does not display it).
set(message = NULL, detail = NULL, value = NULL)
Updates the progress panel. When called the first time, the progress panel is displayed.
close()
Removes the progress panel. Future calls to set
and
close
will be ignored.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## Not run:
# server.R
shinyServer(function(input, output, session) {
output$plot <- renderPlot({
progress <- Progress$new(session, min=1, max=15)
on.exit(progress$close())
progress$set(message = 'Calculation in progress',
detail = 'This may take a while...')
for (i in 1:15) {
progress$set(value = i)
Sys.sleep(0.5)
}
plot(cars)
})
})
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.