Trivial functions to convert time to seconds -- since behavr
uses second as a conventional unit of time.
days(x)hours(x)
mins(x)
numeric vector to be converted in second
number of seconds corresponding to x
(1d = 86400s, 1h = 3600s and 1min = 60s)
Most functions in the rethomics
framework will use seconds as a unit of time.
It is always preferable to call a function like my_function(days(1.5))
rather than my_function(60 * 60 * 24 * 1.5)
.