HmsToSec
- Converts a vector of h:m:s to seconds.
SecToHms
- Converts a vector of seconds to h:m:s.
HmsToSec(x)
SecToHms(x, digits = NULL)
Arguments
- x
A vector of times in h:m:s (for HmsToSec
) or seconds (for
SecToHms
).
- digits
the number of digits to use for potential fractions of seconds.
Value
HmsToSec
- Returns a vector of times in seconds.
SecToHms
- Returns a vector of times in h:m:s format.
Author
Tyler Rinker <tyler.rinker@gmail.com>
Examples
HmsToSec(c("02:00:03", "04:03:01"))
#> [1] 7203 14581
HmsToSec(SecToHms(c(222, 1234, 55)))
#> [1] 222 1234 55
SecToHms(c(256, 3456, 56565))
#> [1] "00:04:16" "00:57:36" "15:42:45"