timer: Timer

View source: R/timer.R

timerR Documentation

Timer

Description

Reporting of time elapsed since a given start time. This function is used internally by other functions in the package.

Usage

timer(start.time)

Arguments

start.time

A date-time object of class POSIXct, e.g. as given by Sys.time.

Value

The function returns a message informing of the time elapsed since the input 'start.time'.

Author(s)

A. Marcia Barbosa

See Also

Sys.time, proc.time, difftime

Examples

# get starting time:
start <- Sys.time()

# do some random analysis:
sapply(rnorm(50000), function(x) x*5)

# see how long it took:
timer(start)

fuzzySim documentation built on Oct. 9, 2023, 5:09 p.m.