hms (version 0.4.2)

round_hms: Round or truncate to a multiple of seconds

Description

Convenience functions to round or truncate to a multiple of seconds.

Usage

round_hms(x, secs)

trunc_hms(x, secs)

Arguments

x

A vector of class hms

secs

Multiple of seconds, a positive numeric. Values less than one are supported

Value

The input, rounded or truncated to the nearest multiple of secs

Examples

Run this code
# NOT RUN {
round_hms(as.hms("12:34:56"), 5)
round_hms(as.hms("12:34:56"), 60)
trunc_hms(as.hms("12:34:56"), 60)
# }

Run the code above in your browser using DataLab