setTkProgressBarThrottled: A Tk Progress Bar with Throttled Updates

Description Usage Arguments Examples

View source: R/tkProgressBarThrottled.R

Description

A Tk Progress Bar with Throttled Updates

Usage

1
setTkProgressBarThrottled(pb, value, title = NULL, label = NULL)

Arguments

updateFreq

Examples

1
2
3
4
5
6
pb <- tkProgressBar("Example", min=0, max=300, initial=0)
for (i in 1:300) {
  Sys.sleep(0.1)
  setTkProgressBarThrottled(pb, i)
}
close(pb)

mattdneal/longJobUtils documentation built on May 21, 2019, 12:59 p.m.