Do speed limit reductions reduce speeds?

Vision Zero transportation Madison (WI) Vision Zero

Comparing pre-post data in Madison, Wisconsin

Harald Kliems https://haraldkliems.netlify.app/
2024-08-14

The City of Madison adopted a Vision Zero policy in 2020. Its goal: “to eliminate all fatalities and severe injuries that occur as the result of traffic collisions on city streets by 2035.” One of many measures the city took to achieve this goal were speed limit reductions. Despite evidence from other cities (e.g. Hu and Cicchino 2020), many people questioned the effectiveness of speed limit reductions without changes to the physical environment. The city compiled pre- and post data on vehicle speeds to assess the effectiveness of the speed limit reductions. The data were published as a series of charts in a pdf document. I manually extracted the data from the document and combined them into a single chart.

Show code
library(tidyverse)
library(colorspace)

speed <- read_csv("data/Vision_Zero_speed_limit_reduction_data.csv")

chart <- speed |> 
  mutate(inc_dec = if_else(pct_y_1 > pct_y_2, "decrease", "increase"),
         inc_dec_pct = pct_y_2 - pct_y_1,
         volume_y_2 = pct_y_2 * n_y_2) |> 
  ggplot(aes(pct_y_1, pct_y_2, color = inc_dec_pct, size = volume_y_2)) +
  geom_point() +
  scale_color_continuous_divergingx(name = "% pt decrease/increase", palette = 'RdBu', mid = 0) +
  # scale_color_distiller(name = "% pt decrease/increase", type = "div", palette = "BrBG") +
  scale_size(name = "Traffic volume post") +
  geom_abline(slope = 1, intercept = 0, linetype = 3) +
  labs(x = "Pre reduction",
       y = "Post reduction",
       title = "Pre-post comparison of speed limit reductions in Madison",
       subtitle = "% of vehicles 5+ mph over initial speed limit",
       caption = "Data: City of Madison\nData extraction and visualization: Harald Kliems") +
  xlim(0,45) +
  ylim(0,45) +
    theme_minimal()

chart

The chart shows that in a large majority of locations, the percentage of people going 5 mph or more over the initial speed limit dropped after the speed limit reduction. In some locations that drop was large (up to 15 percentage points), while in others the changes were more moderate. A few locations saw increases in the percentage of speeding vehicles.

A pre-post comparison cannot establish a causal link between speed limit reductions and reductions in speeds. But given that speed limit reductions are easy and cheap, this data appears to support the city’s decision to reduce speed limits.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-SA 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".

Citation

For attribution, please cite this work as

Kliems (2024, Aug. 14). Harald Kliems: Do speed limit reductions reduce speeds?. Retrieved from https://haraldkliems.netlify.app/posts/do-speed-limit-reductions-reduce-speeds/

BibTeX citation

@misc{kliems2024do,
  author = {Kliems, Harald},
  title = {Harald Kliems: Do speed limit reductions reduce speeds?},
  url = {https://haraldkliems.netlify.app/posts/do-speed-limit-reductions-reduce-speeds/},
  year = {2024}
}