Getting components
date_time <- ymd_hms("2025-10-28 18-18-18")
date_time
## [1] "2025-10-28 18:18:18 UTC"
year(date_time)
## [1] 2025
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] Tuesday
## 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()

Roundings
# 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-11-14 18:51:00 2013-11-01 00:00:00
## 2 2013-07-18 10:35:00 2013-07-01 00:00:00
## 3 2013-02-28 16:00:00 2013-02-01 00:00:00
## 4 2013-02-20 13:31:00 2013-02-01 00:00:00
## 5 2013-07-23 13:30:00 2013-07-01 00:00:00
## 6 2013-03-18 14:50:00 2013-03-01 00:00:00
## 7 2013-09-24 07:12:00 2013-09-01 00:00:00
## 8 2013-06-30 17:46:00 2013-06-01 00:00:00
## 9 2013-07-22 00:44:00 2013-07-01 00:00:00
## 10 2013-07-08 11:58:00 2013-07-01 00:00:00
# ceiling 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-04-22 12:41:00 2013-05-01 00:00:00
## 2 2013-03-09 07:59:00 2013-04-01 00:00:00
## 3 2013-10-30 09:21:00 2013-11-01 00:00:00
## 4 2013-07-12 22:02:00 2013-08-01 00:00:00
## 5 2013-01-19 06:33:00 2013-02-01 00:00:00
## 6 2013-08-19 06:23:00 2013-09-01 00:00:00
## 7 2013-09-11 08:56:00 2013-10-01 00:00:00
## 8 2013-09-09 20:25:00 2013-10-01 00:00:00
## 9 2013-04-28 06:39:00 2013-05-01 00:00:00
## 10 2013-12-13 21:50:00 2014-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-11-12 08:45:00 2013-01-01 08:45:00
## 2 2013-05-20 06:37:00 2013-01-01 06:37:00
## 3 2013-08-10 18:29:00 2013-01-01 18:29:00
## 4 2013-11-01 14:02:00 2013-01-01 14:02:00
## 5 2013-04-15 09:41:00 2013-01-01 09:41:00
## 6 2013-01-15 14:38:00 2013-01-01 14:38:00
## 7 2013-10-04 14:35:00 2013-01-01 14:35:00
## 8 2013-04-16 06:35:00 2013-01-01 06:35:00
## 9 2013-09-26 14:45:00 2013-01-01 14:45:00
## 10 2013-08-27 18:03:00 2013-01-01 18:03:00