Nothing
#' Internal function to generate a progress bar for the bootstrap option
#' @param int integer
#' @param tot tot
#' @returns No returns, just prints dots for each bootstrap replication
#' @noRd
progressBar <- function(
int,
tot
) {
cat(".")
if (int %% 5 == 0) {
cat(sprintf("%.0f", int))
}
if (int %% 70 == 0) {
cat("\n")
}
if (int == tot) {
cat("\n")
}
}
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.