| ceiling_index {tibbletime} | R Documentation |
lubridate::ceiling_date()This is a thin wrapper around a lubridate::ceiling_date() that works
for hms, yearmon, and yearqtr classes as well.
ceiling_index(x, unit = "seconds")
x |
a vector of date-time objects |
unit |
a character string specifying a time unit or a multiple of a unit
to be rounded to. Valid base units are |
data(FB)
dplyr::mutate(FB, date2 = ceiling_index(date, "year"))
time_test <- create_series('00:00:00'~'12:00:00',
'1 minute', class = "hms")
dplyr::mutate(time_test, date2 = ceiling_index(date, "hour"))