round_hms {hms} | R Documentation |
Convenience functions to round or truncate to a multiple of seconds.
round_hms(x, secs) trunc_hms(x, secs)
x |
A vector of class hms |
secs |
Multiple of seconds, a positive numeric. Values less than one are supported |
The input, rounded or truncated to the nearest multiple of secs
round_hms(as.hms("12:34:56"), 5) round_hms(as.hms("12:34:56"), 60) trunc_hms(as.hms("12:34:56"), 60)