Nothing
create_progress_bar <- function(standard_locations, .envir = parent.frame()) {
cli::cli_progress_bar(
total = nrow(standard_locations),
format = "Endere\u00e7os processados: {formatC(cli::pb_current, big.mark = ',', format = 'd')}/{formatC(cli::pb_total, big.mark = ',', format = 'd')} {cli::pb_bar} {cli::pb_percent} - {cli::pb_status}",
clear = FALSE,
.envir = .envir
)
}
update_progress_bar <- function(matched_rows,
formatted_case,
.envir = parent.frame()) {
cli::cli_progress_update(
set = matched_rows,
status = glue::glue("Procurando {formatted_case}"),
force = TRUE,
.envir = .envir
)
}
finish_progress_bar <- function(matched_rows, .envir = parent.frame()) {
cli::cli_progress_update(
set = matched_rows,
status = "Fim!",
force = TRUE,
.envir = .envir
)
}
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.