Nothing
startpb <-
function(min=0, max=1)
{
if (dopb()) {
control <- getOption("pboptions")
pb <- switch(control$type,
timer = timerProgressBar(min = min, max = max,
initial = control$initial,
style = control$style, width = control$txt.width,
char = control$char,
min_time = control$min_time),
txt = txtProgressBar(min = min, max = max,
initial = control$initial,
style = control$style, width = control$txt.width,
char = control$char),
tk = tcltk::tkProgressBar(min = min, max = max,
initial = control$initial,
title = control$title, label = control$label,
width = control$gui.width))
if (doshiny())
pb <- shiny::Progress$new(min=min, max=max)
} else {
pb <- NULL
}
invisible(pb)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.