record_rprof {proffer} | R Documentation |
Profile R code and record Rprof samples.
Description
Run R code and record Rprof samples.
Usage
record_rprof(expr, rprof = tempfile(), ...)
Arguments
expr |
An R expression to profile. |
rprof |
Path to a file with Rprof samples. Also returned from the function. |
... |
Additional arguments passed on to |
Value
Path to a file with Rprof samples.
Examples
if (identical(Sys.getenv("PROFFER_EXAMPLES"), "true")) {
# Returns a path to Rprof samples.
record_rprof(replicate(1e2, sample.int(1e4)))
}
[Package proffer version 0.1.6 Index]