HmsToSec {DescTools} | R Documentation |
Convert h:m:s To/From Seconds
Description
HmsToSec
- Converts a vector of h:m:s to seconds.
SecToHms
- Converts a vector of seconds to h:m:s.
Usage
HmsToSec(x)
SecToHms(x, digits = NULL)
Arguments
x |
A vector of times in h:m:s (for |
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(s)
Tyler Rinker <tyler.rinker@gmail.com>
See Also
Examples
HmsToSec(c("02:00:03", "04:03:01"))
HmsToSec(SecToHms(c(222, 1234, 55)))
SecToHms(c(256, 3456, 56565))
[Package DescTools version 0.99.55 Index]