Navigate back to the homepage

Homicide Rates by Country of Birth

The CDC collects mortality statistics at the state and national level based on death certificates issued by local coroners, these death certificates include personal information about the decedent such as the country he was born in, and the circumstances surrounding the death.

Unlike the homicide data from the FBI, the death certificate data collected by the CDC does not suffer from missing data problems. The data also does suffer from the racial misclassification problems that plague FBI data1 (no one calls coroners racist if too many Hispanics or Blacks are the victims of homicides, plus doctors tend to have much higher IQs than cops and be better at filling out forms). This is the same data that is used to study the Hispanic mortality paradox.

Example birth certificate
Example death certificate from Wikipedia

Disparities in homicide rates by country of birth have been widely studied and there exists a vast empirical literature (but somehow economist never seem to have heard of these studies. Wonder why???)

The results show that foreign-born persons differ in their risks of violent death vis-á-vis the native-born population by the amount of the time they have livedin the USA. In particular, recent immigrants (less than 15 years) display higher risks from homicide Differential mortality risks from violent causes for foreign- and native-born residents of the USA

—Explaining the Mexican‐American Health Paradox Using Selectivity Effects2

and also

The age-adjusted mortality rates due to homicide are exceptionally high among males in all three migrant populations, with the Puerto Rican rate equal to that of Blacks. Rates among the Cuban and Mexican born, however, are also high

—Mortality Differentials among Persons Born in Cuba, Mexico, and Puerto Rico Residing in the United States, 1979-813

Hispanics’ immigrant-to nonimmigrant homicide differential became statistically significant in 1980, and immigrants remained at higher risk through 1992.

—Homicide Risk among Immigrants in California, 1970 through 19924

The results indicate that the foreign-born population exhibits a roughly equal risk of death from all combined violent causes in comparison to the native-born population. Yet, when these causes of violent death are broken down into homicide, suicide, car accidents, and other accidents, a different picture emerges. Specifically, immigrants who have been in the USA for less than 15 years are at much greater risk of homicide mortality, yet experience much lower risks from suicide and other accident mortality in comparison to the native-born population

—Differential mortality risks from violent causes for foreign and native-born residents of the USA 5

I couldn’t let an opportunity pass and decided to download the CDC death certificate data. Fortunately, country of birth of the deceased is available from the multiple cause of death microdata since 1979; unfortunately, they stopped making country of birth information available to the public in 2004:

No geographic identifiers are included in the files for 2005-on due to a restriction imposed by the States. Information on applying for state- and county-identified data from NCHS is available.

Mortality Data — Vital Statistics NCHS’ Multiple Cause of Death Data, 1959-2016

Here’s what the data for 2004 looks like:

Homicides in 2004 (last year with publicly available data)

country of birthyearpopulationnumber of homicidesrate
Mexico2004105,11,7111,16611.1
Puerto Rico20041,472,2171298.8
Cuba2004956,352626.5
US2004254,619,91015,0675.9
Canada2004819,256263.2
Unknown2004NA214NA
Island Territories2004NA10NA
Remainder of the World2004NA1,167NA

The break down by country can be pretty rough, since it only includes Mexico, Puerto Rico, Cuba, Canada and a group all category called Remainder of the World. Those born in the US include people of all races/ethnic origins, obviously, and population data was interpolated by monotonic splines from the IPUMS decennial census samples.

Here’s a chart of the same data:

homicide rates by country of birth

Since the data is available from 1979 it is probably a good idea to plot it all:

homicide rates by country of birth 1979-2004

The homicide rates of Hispanic immigrants were stratospheric back in the 80’s, but they’ve been going down ever since. I wonder why this happened?

The Cuban data looks a little weird with the big increase in 1980. This is the same year of the Mariel Boatlift. If you’ve seen Scarface you know that Fidel Castro transported many prisoners to port of Mariel so he could get rid of them. This is certainly an interesting result and one that merits more research (specially given how when I interpolated the population numbers from the 1980 and 1990 censuses, I took the increases as constant, with no Mariel Boatlift pulse).

Since immigrants tend to skew male and males are over-represented among victims of homicide, it’s probably a good idea to plot only male homicide rates. In 1980 the Black male homicide rate was 65.6 (38.1 for all genders), so foreign-born hispanics were even more violent than blacks back in the 80’s, but by 2004 their rates were lower.

male homicide rates by country of birth 1979-2004

To download the NBER mortality files you can use this bash script (you’ll need to install csvkit)

1#!/bin/bash
2DATADIR=data
3mkdir -p $DATADIR
4for i in {1979..2004}
5do
6 if [ ! -f "$DATADIR"/mort$i-homicide.csv.xz ]; then
7 TEMPFILE=$(tempfile).zip
8 wget -O "$TEMPFILE" http://www.nber.org/mortality/$i/mort$i.csv.zip
9 unzip -p "$TEMPFILE" > "$TEMPFILE".csv
10 # the files has a column named ucod with the ICD-10 codes,
11 # we need to find it's number to be able to filter
12 col_number=$(awk -F',' ' { for (i = 1; i <= NF; ++i) print i, $i; exit } ' "$TEMPFILE".csv | grep ucod\" | sed 's|"ucod"||g')
13 # filter to include only homicides and non-terrorism
14 # operations of war/legal interventions ICD codes
15 if [ $i -le 1978 ]; then
16 csvgrep -c "$col_number" -f icd8-homicide-codes.txt "$TEMPFILE".csv >> "$DATADIR"/mort$i-homicide.csv
17 else
18 if [ $i -le 1998 ]; then
19 csvgrep -c "$col_number" -f icd9-homicide-codes.txt "$TEMPFILE".csv >> "$DATADIR"/mort$i-homicide.csv
20 else
21 csvgrep -c "$col_number" -f icd10-homicide-codes.txt "$TEMPFILE".csv >> "$DATADIR"/mort$i-homicide.csv
22 fi
23 fi
24 xz -9 "$DATADIR"/mort$i-homicide.csv
25 rm -f "$TEMPFILE" "$TEMPFILE".csv
26 fi
27done

Because the CDC’s estimates of legal intervention deaths are unreliable I include them in the homicide totals. These are the codes I used to filter homicides (the ones starting with ’#’ were excluded):

icd10-homicide-codes.txt

1#U011 (Terrorism involving destruction of aircraft)
2#U012 (Terrorism involving other explosions and fragments)
3#U014 (Terrorism involving firearms)
4X85
5X86
6X87
7X88
8X89
9X90
10X91
11X92
12X93
13X94
14X95
15X96
16X97
17X98
18X99
19Y00
20Y01
21Y02
22Y03
23Y04
24Y05
25Y060
26Y061
27Y062
28Y068
29Y069
30Y070
31Y071
32Y072
33Y073
34Y078
35Y079
36Y08
37Y09
38Y350
39Y351
40Y352
41Y353
42Y355
43Y356
44Y357
45Y362
46Y364
47Y366
48Y367
49Y368
50Y369
51Y871
52Y890
53#Y891 (Sequelae of war operations)

icd9-homicide-codes.txt

19600
29601
3961
49620
59621
69622
79629
8963
9964
109650
119651
129652
139653
149654
159655
169656
179657
189658
199659
20966
219670
229671
239679
249680
259681
269682
279683
289684
299688
309689
31969
32970
33971
34972
35973
36974
37975
38976
39977
40#978 "Legal execution"
419912
429919
43993
44995
45996
469970
47#9979 "Unspecified form of unconventional warfare"
48#999 "Late effect of injury due to war operations"

  1. The Validity of Race and Hispanic-origin Reporting on Death Certificates in the United States: An Update. https://www.ncbi.nlm.nih.gov/pubmed/28436642
  2. Explaining the Mexican‐American Health Paradox Using Selectivity Effects. https://link.springer.com/article/10.1023/A:1006318101290
  3. Mortality Differentials among Persons Born in Cuba, Mexico, and Puerto Rico Residing in the United States, 1979-81 https://ajph.aphapublications.org/doi/abs/10.2105/AJPH.77.5.603
  4. Homicide Risk among Immigrants in California, 1970 through 1992 https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1380372/
  5. Differential mortality risks from violent causes for foreign and native-born residents of the USA https://link.springer.com/article/10.1023/A:1006318101290

December 31st, 2018


More articles from Forest Dweller

Mexicans, Cubans and other Hispanics

Homicide rates by Hispanic subgroup

2 min read

Hispanic Homicides

Big decrease in Hispanic homicide victimization since 1999

2 min read
© 2018–2021 Forest Dweller
Link to $https://twitter.com/yukatapangolinLink to $https://github.com/yukatapangolin