roundPOSIXt {datetimeutils} | R Documentation |
Round POSIXt Objects to Specified Interval
Description
Round POSIXt objects to specified intervals such as ‘5 minutes’.
Usage
roundPOSIXt(t, interval, up = FALSE)
Arguments
t |
a vector that inherits from class |
interval |
A character string of the form “ |
up |
logical: round down (the default) or up? |
Details
roundPOSIXt
rounds an input of class POSIXt
; it
returns a vector of class POSIXct
.
Value
Author(s)
Enrico Schumann
References
B.D. Ripley and K. Hornik. Date-Time Classes. R-News, 1(2):8–12, 2001.
See Also
Examples
times <- as.POSIXct("2012-03-24 22:17:27") + 1:3
roundPOSIXt(times, "10 min")
roundPOSIXt(times, "10 min", TRUE)
[Package datetimeutils version 0.6-4 Index]