updateProgress {psichomics} | R Documentation |
Update a progress object
updateProgress(message = "Loading...", value = NULL, max = NULL, detail = NULL, divisions = NULL, global = if (isRunning()) sharedData else getHidden(), console = TRUE)
message |
Character: progress message |
value |
Integer: current progress value |
max |
Integer: maximum progress value |
detail |
Character: detailed message |
divisions |
Integer: number of divisions in the progress bar |
global |
Shiny's global variable |
console |
Boolean: print message to console? (TRUE by default) |
If divisions
is not NULL, a progress bar is started with the
given divisions. If value
is NULL, the progress bar will be
incremented by one; otherwise, the progress bar will be incremented by the
integer given in value.
NULL (this function is used to modify the Shiny session's state)