progress_tk {plyr} | R Documentation |
A graphical progress bar displayed in a Tk window
progress_tk(title = "plyr progress", label = "Working...", ...)
title |
window title |
label |
progress bar label (inside window) |
... |
other arguments passed on to tkProgressBar |
This graphical progress will appear in a separate window.
Hadley Wickham <h.wickham@gmail.com>
tkProgressBar
for the function that powers this progress bar
l_ply(1:1000, identity, .progress = "tk") l_ply(1:1000, identity, .progress = progress_tk(width=400)) l_ply(1:1000, identity, .progress = progress_tk(label=""))