ggplot2 spacing

Same rules for + as for |>

flights |> 
  group_by(month) |> 
  summarize(
    delay = mean(arr_delay, na.rm = TRUE)
  ) |> 
  ggplot(aes(month, delay)) +
  geom_point() + 
  geom_line()