dtt_date_add_time {dttr2} | R Documentation |
Adds times to Dates vector and sets timezone in a single function.
dtt_date_add_time(x, time, tz = dtt_default_tz())
x |
A Date vector. |
time |
A hms vector of the time. |
tz |
A string of the time zone. |
A POSIXct vector.
Other add:
dtt_add_units()
dtt_date_add_time(
as.Date("2001-03-05"),
hms::as_hms("06:07:08"),
tz = "Etc/GMT+9"
)