r_ply {plyr} | R Documentation |
Evalulate expression n times then discard results
r_ply(.n, .expr, .progress = "none", .print = FALSE)
.n |
number of times to evaluate the expression |
.expr |
expression to evaluate |
.progress |
name of the progress bar to use, see create_progress_bar |
.print |
This function runs an expression multiple times, discarding the results.
This function is equivalent to replicate
, but never returns
anything
@keyword manip
@arguments number of times to evaluate the expression
@arguments expression to evaluate
@arguments name of the progress bar to use, see create_progress_bar
@argument automatically print each result? (default: FALSE
)
Hadley Wickham <h.wickham@gmail.com>
r_ply(10, plot(runif(50))) r_ply(25, hist(runif(1000)))