cpu.time {npsp} | R Documentation |
Total and partial CPU time used
Description
Returns and (optionally) prints the total and/or partial (since the last call to this function) real and CPU times.
Usage
cpu.time(..., reset = FALSE, total = TRUE, last = TRUE, flush = FALSE)
Arguments
... |
objects (describing the last operation) to be printed (using |
reset |
logical; if |
total |
logical; if |
last |
logical; if |
flush |
logical; if |
Value
Invisibly returns a list with the following 3 components
(objects of class "proc_time"
):
time |
user, system, and total elapsed times for the currently running R process
(result of a call to |
last , total |
differences between the corresponding |
See Also
proc.time
, system.time
, flush.console
.
Examples
cpu.time(reset=TRUE)
res <- median(runif(100000))
cpu.time('\nSample median of', 100000, 'values =', res)
res <- median(runif(1000))
cpu.time('\nSample median of', 1000, 'values =', res)
[Package npsp version 0.7-13 Index]