progress_win {plyr}R Documentation

Graphical progress bar, powered by Windows

Description

A graphical progress bar displayed in a separate window

Usage

progress_win(title = "plyr progress", ...)

Arguments

title window title
... other arguments passed on to winProgressBar

Details

This graphical progress only works on Windows.

Author(s)

Hadley Wickham <h.wickham@gmail.com>

See Also

winProgressBar for the function that powers this progress bar

Examples

if(exists("winProgressBar")) {
l_ply(1:1000, identity, .progress = "win")
l_ply(1:1000, identity, .progress = progress_win(title="Working..."))
}

[Package plyr version 0.1.5 Index]