df <- tuesdata$sechselaeuten
df_bar <- df |>
filter(!is.na(duration))
ggplot(df_bar, aes(x = year, y = duration)) +
geom_col()
df <- tuesdata$sechselaeuten
df_bar <- df |>
filter(!is.na(duration))
ggplot(df_bar, aes(x = year, y = duration)) +
geom_col()