timing {SciViews} | R Documentation |
Timing of R expressions.
Description
Similar to system.time()
but returns a more convenient 'difftime' object.
Usage
timing(expr, gc.first = TRUE)
Arguments
expr |
Valid R expression to be timed. If missing, |
gc.first |
Logical - should a garbage collection be performed immediately
before the timing? Default is |
See Also
Examples
test <- timing(Sys.sleep(0.5))
test
attr(test, "details")
[Package SciViews version 0.9-13.1 Index]