cli_progress_bar: CLI progress bar

Description Usage Arguments Value Examples

View source: R/client.R

Description

A progress bar using the progress package

Usage

1

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

1
2
3
4
5
6
{
  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 Oct. 23, 2020, 6:36 p.m.