Creating Date/Times
From Strings
# From strings
"2022-10-28" %>% ymd()
## [1] "2022-10-28"
# From numbers
20221028 %>% ymd()
## [1] "2022-10-28"
"2022-10-28 4-41-30" %>% ymd_hms()
## [1] "2022-10-28 04:41:30 UTC"
Individual Components
flights %>%
select(year:day, hour, minute) %>%
mutate(departure = make_datetime(year = year, month = month, day = day, hour = hour, min = minute))
## # A tibble: 336,776 × 6
## year month day hour minute departure
## <int> <int> <int> <dbl> <dbl> <dttm>
## 1 2013 1 1 5 15 2013-01-01 05:15:00
## 2 2013 1 1 5 29 2013-01-01 05:29:00
## 3 2013 1 1 5 40 2013-01-01 05:40:00
## 4 2013 1 1 5 45 2013-01-01 05:45:00
## 5 2013 1 1 6 0 2013-01-01 06:00:00
## 6 2013 1 1 5 58 2013-01-01 05:58:00
## 7 2013 1 1 6 0 2013-01-01 06:00:00
## 8 2013 1 1 6 0 2013-01-01 06:00:00
## 9 2013 1 1 6 0 2013-01-01 06:00:00
## 10 2013 1 1 6 0 2013-01-01 06:00:00
## # ℹ 336,766 more rows
From Other Types
# From date to date-time
today() %>% as_datetime()
## [1] "2026-04-07 UTC"
# From date-time to date
now() %>% as_date()
## [1] "2026-04-07"
Date-time components
Getting Components
date_time <- ymd_hms("2022-10-28 18-18-18")
date_time
## [1] "2022-10-28 18:18:18 UTC"
year(date_time)
## [1] 2022
month(date_time, label = TRUE, abbr = FALSE)
## [1] October
## 12 Levels: January < February < March < April < May < June < ... < December
yday(date_time)
## [1] 301
mday(date_time)
## [1] 28
wday(date_time, label = TRUE, abbr = FALSE)
## [1] Friday
## 7 Levels: Sunday < Monday < Tuesday < Wednesday < Thursday < ... < Saturday
# Create flights_dt
make_datetime_100 <- function(year, month, day, time) {
make_datetime(year, month, day, time %/% 100, time %% 100)
}
flights_dt <- flights %>%
filter(!is.na(dep_time), !is.na(arr_time)) %>%
mutate(
dep_time = make_datetime_100(year, month, day, dep_time),
arr_time = make_datetime_100(year, month, day, arr_time),
sched_dep_time = make_datetime_100(year, month, day, sched_dep_time),
sched_arr_time = make_datetime_100(year, month, day, sched_arr_time)
) %>%
select(origin, dest, ends_with("delay"), ends_with("time"))
flights_dt %>%
transmute(wday = wday(dep_time, label = TRUE)) %>%
ggplot(aes(wday)) +
geom_bar()

Rounding
# Floor_date for rounding up
flights_dt %>%
mutate(week = ceiling_date(dep_time, "month")) %>%
select(dep_time, week) %>%
sample_n(10)
## # A tibble: 10 × 2
## dep_time week
## <dttm> <dttm>
## 1 2013-02-13 08:23:00 2013-03-01 00:00:00
## 2 2013-01-24 16:05:00 2013-02-01 00:00:00
## 3 2013-04-30 22:55:00 2013-05-01 00:00:00
## 4 2013-10-08 21:06:00 2013-11-01 00:00:00
## 5 2013-02-20 12:02:00 2013-03-01 00:00:00
## 6 2013-10-23 13:39:00 2013-11-01 00:00:00
## 7 2013-04-02 19:58:00 2013-05-01 00:00:00
## 8 2013-08-20 15:06:00 2013-09-01 00:00:00
## 9 2013-10-01 07:20:00 2013-11-01 00:00:00
## 10 2013-04-27 19:23:00 2013-05-01 00:00:00
# Floor_date for rounding down
flights_dt %>%
mutate(week = floor_date(dep_time, "month")) %>%
select(dep_time, week) %>%
sample_n(10)
## # A tibble: 10 × 2
## dep_time week
## <dttm> <dttm>
## 1 2013-08-04 17:17:00 2013-08-01 00:00:00
## 2 2013-03-05 05:59:00 2013-03-01 00:00:00
## 3 2013-02-25 13:27:00 2013-02-01 00:00:00
## 4 2013-08-12 09:57:00 2013-08-01 00:00:00
## 5 2013-11-11 13:34:00 2013-11-01 00:00:00
## 6 2013-08-20 17:37:00 2013-08-01 00:00:00
## 7 2013-11-26 15:18:00 2013-11-01 00:00:00
## 8 2013-06-20 21:03:00 2013-06-01 00:00:00
## 9 2013-05-26 10:43:00 2013-05-01 00:00:00
## 10 2013-01-27 06:17:00 2013-01-01 00:00:00
Setting Components
flights_dt %>%
mutate(dep_hour = update(dep_time, yday = 1)) %>%
select(dep_time, dep_hour) %>%
sample_n(10)
## # A tibble: 10 × 2
## dep_time dep_hour
## <dttm> <dttm>
## 1 2013-09-22 16:16:00 2013-01-01 16:16:00
## 2 2013-10-28 14:10:00 2013-01-01 14:10:00
## 3 2013-12-21 06:25:00 2013-01-01 06:25:00
## 4 2013-08-05 14:14:00 2013-01-01 14:14:00
## 5 2013-10-08 19:56:00 2013-01-01 19:56:00
## 6 2013-03-20 15:44:00 2013-01-01 15:44:00
## 7 2013-07-15 15:18:00 2013-01-01 15:18:00
## 8 2013-06-11 19:19:00 2013-01-01 19:19:00
## 9 2013-06-20 16:22:00 2013-01-01 16:22:00
## 10 2013-05-27 07:23:00 2013-01-01 07:23:00