Cross-TabulationsVision Zero
In our discussion of charts and graphs, we observed that New York City's Vision Zero initiative has sharply reduced traffic injuries and fatalities. Between 2013 and 2017, the number of injuries decreased 20 percent and the number of fatalities decreased 35 percent. Here, we explore the same question by comparing the distribution of casualties before and after the Vision Zero initiative began. And once again, I define "casualties" as the sum of "fatalities" and "injuries." From the graph above (and the accompanying table) we see that the number of intersections with less than 0.05 average monthly casualties has increased. And we see that the number of intersections at each of the dangerous levels has fallen. Put differently, the distribution of average monthly casualties has shifted towards zero. The percentage of intersections with less than 0.05 average monthly casualties rose 8 percentage points. (And by definition, the more dangerous categories fell by a combined 8 percentage points). To create such a comparison, we first use the tapply function to create a table of intersections with average monthly casualties before and after the Vision Zero initiative began:
## make casualties by intersection, before and after Vision Zero In that cas_table, each row represents one intersection. In one column of each row is the average monthly casualties before Vision Zero. And in the other column is the average monthly casualties after Vision Zero. Next, we need a function that categorizes the average monthly casualties:
## function to cut casualty counts into buckets With that function, we can then count intersections by category. If each category (of average monthly casualties) is represented both before and after Vision Zero began, we can simply cbind together two tables:
## quick and dirty cross-tabulations But it's helpful to have a more general crosstabs function that can handle the case where the count is zero for one or more categories.
## create cross tabs function Then, as before, we use the tapply function to create a table of intersections with average monthly casualties before and after the Vision Zero initiative began. But this time, we use our crosstabs function.
## make casualties by intersection, before and after Vision Zero Finally, we can compare the two distributions by plotting them side-by-side:
## compare the distributions More detailed examples can be found in the R script and R library that I wrote for this analysis. And in our discussion of the Perl language, we will create the data structures that convert the original data into the dataset used for this analysis. Copyright © 2002-2022 Eryk Wdowiak | |||||||||||||||||||||||||||||||||
|