cli_progress_bar: CLI progress bar

View source: R/client.R

cli_progress_barR Documentation

CLI progress bar

Description

A progress bar using the progress package

Usage

cli_progress_bar(...)

Arguments

...

All arguments are passed to the constuctor of the progress::progress_bar class.

Value

A remote progress bar object that can be used the same way as progress::progress_bar, see examples below.

Examples


{
  p <- cli_progress_bar(total = 10)
  cli_alert_info("Starting computation")
  for (i in 1:10) { p$tick(); Sys.sleep(0.2) }
  cli_alert_success("Done")
}


cliapp documentation built on May 29, 2024, 5:01 a.m.