time_delta: Calculate time difference and return a number

View source: R/utils.R

time_deltaR Documentation

Calculate time difference and return a number

Description

Calculate time difference and return a number

Usage

time_delta(t1, t2, units = "secs")

Arguments

t1

time start

t2

time end

units

character, choices are 'secs', 'mins', 'hours', and 'days'

Value

numeric difference of time in units specified

Examples

a = Sys.time()
Sys.sleep(0.3)
b = Sys.time()

time_delta(a, b) # In seconds, around 0.3
time_delta(a, b, 'mins') # in minutes, around 0.005


dipsaus documentation built on June 27, 2024, 5:10 p.m.