A Study on Fatal Police Shootings in the USA

Gursev Pirge
6 min readOct 7, 2020

This article is a short summary of an analysis of police killings in the United States and covers 5673 police involved killings between January 1st, 2015 and October1st, 2020. The Washington Post keeps a detailed database about the police killings in the United States of America and gives the opportunity to make an in-depth analysis for anyone interested in the subject. The Washington Post announces the project as follows:

“In 2015, The Post created a database cataloging every fatal shooting nationwide by a police officer in the line of duty, collecting data on those who were killed and details of the shootings. The effort began because data compiled by the federal government was unreliable and incomplete. The project was awarded the 2016 Pulitzer Prize for National Reporting. This database is based on news reports, public records, social media and other sources.”

I used the active database to analyze the police shootings and tried to concentrate on the following parameters:

· Gender,

· Age,

· Race,

· Mental Illness,

· Victim Armament (Type of Weapon)

· Location (City and State).

Visual exploratory analysis of the results using Pandas and Seaborn give a better picture about the incidents.

Data Cleaning

The first step is to import and clean the data using pandas before exploring the relationships between possible parameters and the killings.

As can be seen, there are 5673 rows (killings) and 17 columns (attribute)s detailing the incident.

Databases always have missing information, so the next step is to check the columns and get the number of missing data.

Some columns are not essential for the intended analysis, which are shown in the codes below; so they are deleted and will not be considered.

It is widely accepted that race is probably one of the most potentially important parameters and around 10% of the race data is missing (NaN). Any effort (which will include assumptions) to fill these rows will be unreasonable or a long and unreliable struggle, so all the rows that contain missing values are dropped and now we have 4572 rows of solid (with no missing values) data that are ready for analysis.

Gender and Age

First, let us look at the gender of the shooting victims. Analysis of the remaining data shows that 95 % of them are male (4344 vs. 228).

The bar plots also show that average age for both male and female victims are quite close: 37.49 for females vs. 36.60 for males.

A more detailed analysis shows the reason for the high average age value for the victims. 3780 people were over 25 years old, whereas 792 were younger than 25. This may be a little deceiving, because according to the USA Census 2010, 68 % of the people in the USA are above 25. In our case, almost 83 % of the victims are older than 25.

Race

Race is a delicate issue and the conventional wisdom is that black people are at a higher risk under conditions involving potential danger. The table below shows that 1205 black people out of a total of 4572 people were killed by the police, which is 26.4 %. Once again, if you check the official data of demographics, 12.7 % of the USA is African American. I do not have expertise on this social subject, so I will leave the subject here.

W: White, B: Black, H: Hispanic, A: Asian, N: Native, O: Other.

Effect of Mental Illness

It was easy to see that having a mental illness has a big effect on increasing the risk of being killed by the police during a traffic stop or other types of encounters. There are many websites (People with Untreated Mental Illness 16 Times More Likely to Be Killed by Law Enforcement), (How Mental Illness Affects Police Shooting Fatalities) and reports (Half of People Killed by Police Have a Disability: Report) related to this subject, although their results produce widely spread numbers depending on the domain and region. There may be some explanations for this situation, like police force has become the default responders to mental health cases, but my intention is not to make comments or interpret the situations — just give the results to the reader.

Still, we have some important outcomes here. First, 24.43 % of all the killings involved a mental situation, which is shown in the figure.

Once the gender is included to the analysis (below), it is easy to see that female victims’ percentage is higher than male victims’ value (34.21 % for females vs. 23.92 % for males). Again, it is the experts’ job to comment on this outcome.

Victim Armament

We all know that police officers risk their lives daily and do not deserve to be targets. In order to have an idea about the risks they take, I checked the types of weapons the victims possessed at the time of killing. The results show that only 341 of the 4572 victims were unarmed. The rest had access to or were carrying some type of weapon — 2698 of which were guns. One person even had a chainsaw.

Location

Finally, I checked the crime locations. Los Angeles was the city and California was the state with the highest number of police killings. Just remember that, California is the most populous state and Los Angeles is one of the most crowded cities.

Conclusion

In this article, I analyzed the fatal police shootings between 2015 and 2020, using the public data provided by The Washington Post. The analysis provides evidence that:

· 95 % of the victims are male.

· 83 % of the victims are older than 25, whereas according to the USA Census 2010, 68 % of the people in the USA are above 25.

· 26.4 % of the victims are black. Official data of demographics state that 12.7 % of the USA is African American.

· 24.43 % of all the killings involved a mental situation of the victim. Female victims had a higher percentage (34.21 %) vs. male victims (23.92 %).

· 7.46 % of the victims were unarmed, while 59 % had a gun.

· Los Angeles and California were the places, where police killings were maximum.

I want to emphasize that, above are the results of my data analysis.Unfortunately, I do not have the expertise to comment on the results.

Thank you for reading. I am planning to publish similar articles soon.

You can access to this article and similar ones here.

--

--