Navigate back to the homepage

Mexicans, Cubans and other Hispanics

While US Hispanics share many cultural similarities they are in reality an amalgamation of many different groups that have their origins in many different countries and are not monolithic.

Examining Hispanic homicide mortality as a single group as is usually done in the so-called social sciences would leave us with an incomplete picture of violence in their vibrant and diverse communities since we can’t assume that their attitudes, cultural practices, or genetic origins are similar.

Heterogeneity in percentage foreign born, Native American and Black admixture and educational selectivity in who emigrates, all make it worthwhile to break down Hispanics into subgroups. Fortunately, the CDC records the Hispanic origin of the deceased in it’s death certificate data.

To analyze trends by Hispanic subgroup I downloaded homicide data from the multiple cause of death files for the years 2003-2016 from the NBER and used the 2001-2016 population from the American Community Survey, 2001-2017:

Average of 2003-2016 data

race/ethnicitytotal homicidesaverage population (2003-2016)average rate
Black1284453744585222.904184
Puerto Rican485946360707.101312
Mexican32349317976616.975989
All Hispanics48414496005216.669951
Central American358942204826.034352
Cuban121318076274.572700
Dominican78914958113.504267
White834871966782252.830295
South American58328979891.340240
Central American and South American933NANA
Other4099NANA
Other Races9024NANA
Unknown1636NANA

I’m actually under-counting rates by a tiny bit because of the unknowns. In particular, homicide rates for Central And South Americans could be vastly underestimated because of the Central and South American category. (The ACS has data by country and the CDC has the categories Central American; South American; and Central and South American.)

Here’s the information in chart form:

homicides by Hispanic group

I’m kind of surprised that Dominicans have such a low homicide rate. Dominicans had very low homicide rate in 2003, so maybe there are some problems with how they’re coded. The obvious explanation being that some Dominicans are coded as simply Black (but I’ve never met a Dominican who would describe himself as Black)

Sammy Sosa
transmogrification of a Dominican into a White person

Here’s the data visualized as a time series. (lol, the Ferguson effect is really obvious)

2003-2016 homicide rates

The chart shows that as of 2016 Mexicans are a little less violent than Puerto Ricans, but it is a recent phenomenon, they used to be more violent back in 2007.

And a chart showing only showing Hispanics and Whites:

2003-2016 homicide rates

It’s also worthwhile to remember from my other post that in 2003 the Hispanic homicide rate was well above the national average, while in 2016 it was a little bit lower (i.e. Hispanic homicides rates are decreasing faster that those of other races)

Hispanic homicide rates

To download the NBER mortality files you can use this bash script (you’ll need to install [csvkit] (https://csvkit.readthedocs.io/en/1.0.3/), and R with dplyr)

1#!/bin/bash
2
3OUT=mort1999-2016.csv
4rm -f $OUT
5DATADIR=data
6mkdir -p $DATADIR
7for i in {2003..2016}
8do
9 if [ ! -f "$DATADIR"/mort$i-homicide.csv ]; then
10 TEMPFILE=$(tempfile).zip
11 wget -O "$TEMPFILE" http://www.nber.org/mortality/$i/mort$i.csv.zip
12 unzip -p "$TEMPFILE" > "$TEMPFILE".csv
13 # the files have a column named ucod with the ICD-10 codes,
14 # we need to find it's number to be able to filter
15 col_number=$(awk -F',' ' { for (i = 1; i <= NF; ++i) print i, $i; exit } ' "$TEMPFILE".csv | grep ucod | sed 's|"ucod"||g')
16 # filter to include only homicides and non-terrorism
17 # operations of war/legal interventions
18 csvgrep -c "$col_number" -f icd-homicide-codes.txt "$TEMPFILE".csv >> "$DATADIR"/mort$i-homicide.csv
19 rm -f "$TEMPFILE" "$TEMPFILE".csv
20 fi
21 # join all the files
22 if [ -f $OUT ]; then
23 # use R to concat the csv files (but only include some columns
24 # like ucod, sex, etc)
25 Rscript -e 'options(stringsAsFactors = FALSE);df=dplyr::bind_rows(read.csv("mort1999-2016.csv"), read.csv(commandArgs(TRUE)[1]));write.csv(df[,-grep("recor|econ|enico|rnifla", names(df))], "mort1999-2016.csv", row.names=FALSE)' "$DATADIR"/mort$i-homicide.csv
26 else
27 cp "$DATADIR"/mort$i-homicide.csv $OUT
28
29 fi
30
31done

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):

icd-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)

Ana
Cuban

Eiza
Mexican

Ocasio
Puerto Rican

November 13th, 2018


More articles from Forest Dweller

Hispanic Homicides

Big decrease in Hispanic homicide victimization since 1999

2 min read

Race and Hispanic Origin Errors

Blacks are Hispanic and Whites Black in the CDC Wonder Houston data

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