progress_win {plyr} | R Documentation |
A graphical progress bar displayed in a separate window
progress_win(title = "plyr progress", ...)
title |
window title |
... |
other arguments passed on to |
This graphical progress only works on Windows.
winProgressBar
for the function that powers this progress bar
Other progress bars:
progress_none()
,
progress_text()
,
progress_time()
,
progress_tk()
if(exists("winProgressBar")) {
l_ply(1:100, identity, .progress = "win")
l_ply(1:100, identity, .progress = progress_win(title="Working..."))
}