r-lib/progress

A BSD-like progress indicator

dmedri opened this issue · 2 comments

Quite common in *BSD world, the inline progress indicator [\].

Isn't that easy already?

library(progress)
pb <- progress_bar$new("Working on this and that [:spin]", total = 30)
for (i in 1:30) {
  pb$tick()
  Sys.sleep(1 / 30)
}

Just seen now, thank you.