small edits

This commit is contained in:
Ben Varick 2025-11-18 21:22:18 -07:00
parent f79c8d5a90
commit 891eca1a00
Signed by: ben
SSH key fingerprint: SHA256:jWnpFDAcacYM5aPFpYRqlsamlDyKNpSj3jj+k4ojtUo

View file

@ -188,6 +188,7 @@ weather |>
group_by(city, month) |>
summarise(median_days_above_4hr = median(days_above_4hr)) |>
ggplot() +
scale_x_continuous(breaks = seq(1,12,1)) +
geom_line(aes(x = month,
y = median_days_above_4hr,
color = city)) +