It’s a black mark on our history that early Utah allowed slavery. Other people more informed than I have more detail on the people involved and legal details (This Abominable Slavery is on my to-read list, but I haven’t gotten to it yet), but I was curious about where Utah stood relative to other states. In 1850 and 1860 the US Census asked households whether they had any slaves, so I ran a weighted crosstab on % households with slaves.
In 1850 the census reported on 37 states. Of those 19 reported some slaves. When we rank order the states by slaveholdings Mississippi was the most slave-holding state, with 45% of households reporting a slave. At the bottom of those with any slaves is Utah and New Jersey, which were both well under 1%.
Others have written about how legally Utah slavery was quite different from Southern chattel slavery, and it looks like both qualitatively and quantitatively slavery in Utah shouldn’t conjure up the same pictures as large-scale plantation slavery. That is not to excuse it in the slightest of course, it is what it is.
When we look at 1860 on the eve of the Civil War the picture is similar.
By 1860, of states that had slavery Utah was the least slave holding state, with 99.9% of households not owning slaves. (Interestingly, the next least slave-holding state, Delaware was the last state to ban slavery and not, contrary to popular mythology, Texas). Again, this isn’t to excuse this black mark in slightest, but it’s interesting to see the cross-state variations and context.
Credit to the amazing folks at IPUMS for making historical decennial census data easily available.
Code:
library(pollster)
if (!require(“ipumsr”)) stop(“Reading IPUMS data into R requires the ipumsr package. It can be installed using the following command: install.packages(‘ipumsr’)”)
ddi <- read_ipums_ddi(“Location/usa_00024.xml”)
data <- read_ipums_micro(ddi)
data_1850<-subset(data, YEAR==1850)
X_1850<-crosstab(data_1850, STATEFIP, SLAVEHH, HHWT)
data_1860<-subset(data, YEAR==1860)
X_1860<-crosstab(data_1860, STATEFIP, SLAVEHH, HHWT)
Leave a Reply