It seems that the storm of U.S. political news has been unavoidable recently. The stakes are high under the new Republican Administration. It only took one executive order before the Federal District Courts began to restrain the administration from constitutional overreach.
This document was motivated by comments Attorney General Jeff Sessions (AL) made recently regarding marijuana. Context is provided on Nebraska's role as an opponent of legalization in the courts, and background is provided regarding Session's recent comments proposing a link between marijuana and violent crime.
This letter will examine crime data from Nebraska with an eye on the marijuana legalization timeline of bordering state Colorado. Of particular interest is the question, "Are there trends in Nebraska crime through time, and if so, do they correspond with the timeline of legalization in Colorado?"
The legalization of marijuana at the state level could be another consistutional issue put before the courts in the near future. Nebraska and Oklahoma tried to bring a suit before the U.S. Supreme Court against Colorado during 2014 -- 2016. This attempt started the same year Colorado put regulations for recreational pot into effect, ammending the state constitution in the process.
Attorney Generals Doug Peterson (NE) and E. Scott Pruit (OK; now the head of the EPA) argued that Colorado's pot was being smuggled across state lines and claimed this led to an increase in other crimes in the states. The Supreme Court ultimately declined to consider the matter (6 -- 2), with Justices Thomas and Alito dissenting that such matters were under the court's constitutional jurisdiction.
After his nomination to U.S. Attorney General, Jeff Sessions has made it clear he wants the Department of Justice to be 'Tough on Crime' under his watch. This is a central theme of the administration. He has also repeatedly mentioned marijuana.
Session's rhetoric indicates his DOJ will be looking to take a harder line against state legalized marijuana than was taken under the previous administration's more hands off approach. Sessions has compared marijuana as "only slightly less awful" than herion.
It was Sessions' recent comments linking marijuana and violent crime, however, that led me to a well researched article on Snopes.com by Alex Kasprak. Kasprak presents interesting background into Session's claim, and cites published scientific research based on the legalization of medical marijuana that is contrary to Session's claims; ultimately concluding that Jeff Session's comments linking marijuana and violent crime are false..
[As far as I can tell, the published science Kasprak cites are all studies focused on medical marijuana. That makes sense because medical marijuana has been legalized in more states than recreational marijuana, and for a longer period of time. The sample size for medical marijuana is larger than it is for recreational marijuana in the U.S.]
Introduce publically available crime data, e.g. .dat\BadCornHusker.csv
here:
# Packages library(tidyverse) # For wrangling data library(lubridate) # Dates and times library(purrr) # Mapping functions to each element of a vector # Read Nebraska crime data and glimpse ----------------------------------------- badcorn_wide = read_csv(file = "./dat/BadCornHusker.csv") # Glimpse data badcorn_wide
# Define a function to map legal status to year -------------------------------- legality = function(year) { if (year < 2009) { "Illegal" } else if (year <= 2012) { "Medical" } else { "Legal" } }
# Wrangle data before plotting ------------------------------------------------- badcorn_long = badcorn_wide %>% # Gather table from wide to long gather(key = yr, value = Count, -Offense, -Violent) %>% # Format yr as POSIXct date mutate(Year = paste(yr, "12", "31", sep = "-"), Year = ymd(Year)) %>% # Map legal status to year mutate(Status = map_chr(.x = yr, .f = legality), Legal = ifelse(Status != "Illegal", TRUE, FALSE)) %>% mutate(Offense = as.factor(Offense)) # Glimpse data badcorn_long
# First look at criminal homicides --------------------------------------------- badcorn_long %>% filter(Offense == "Criminal_Homicide") %>% ggplot(aes(x = Year, y = Count, color = Status)) + theme_classic() + geom_point() + stat_smooth(method = lm) + labs(title = "Criminal Homicides", subtitle = "Nebraska: 2000 -- 2015")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.