Global Homicide Rates by Government Type

[This article was first published on Graph of the Week, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

world homicide rates by democracy index
Surprising results

For purposes of this article, any mention of homicide rates refers to reported homicide rates.

Open vs Closed

In mostly open countries (full democracies), the homicide rates are rather low when compared to other types of governments – except for authoritarian regimes. Left open to speculation, the reasons can be many. Perhaps people in free societies are happier – happy people don’t tend to murder other people, otherwise they wouldn’t be happy. In a previous articles, it was shown that full democracies produce longer life spans and are world leaders in technological advancements. So, not only do people thrive when free, but they live longer and pursue creativity.

In mostly closed countries (authoritarian regimes), the homicides rates are also low (comparatively speaking). It’s very well possible that not all homicides are reported in these countries – especially given recent events regarding the revolts in the Arabian countries (see Arab Spring). Many thousands have died during this time which would not be reported as a ‘homicide.’ When the government murders a person, it is viewed as eliminating a criminal – not a homicide (in all countries, that is). But if the rates are somewhat accurate, then why so low? Perhaps it is due to fear – people who are afraid for their own lives probably will not kill others if that means their own death.



Who Reports the Most Homicides?

Flawed democracies.

These are the 2nd tier most ‘free’ countries. That begs the question – what exactly is a flawed democracy? It’s not a simple answer – it’s a rating based on a country’s democracy index. In summary, it is based on five categories: electoral process and pluralism, civil liberties, the functioning of government, political participation and political culture. Click here for a full description.

Why is this? Perhaps those countries have unemployment problems, gender equality problems or culture problems. The question begs further research in this area and this author has not yet found a statistical correlation. If interested, the worst offenders include Honduras, Jamaica, El Savador, Trinidad and Tobago, South Africa, Brazil, and Columbia.

Anybody with insight into this area is welcome to comment. At any rate, if you are planning on visiting or moving to a country with a ‘flawed democracy’, you should keep the data presented here in mind.

global government category map
Too many authoritarian regimes.
EDIT: Originally published on 2012-05-16, the above map was out of date (showing USSR instead of current global makeup). On 2012-05-25 it was replaced using current political boundaries.

For a global map categorized by government type, see the chart above. Nearly 40% of the world is under authoritarian rule (much of that is China), while only 13% are under a full democracy. It would be interesting to see a similar map at one hundred year intervals going back in time.

A country can indeed make the transition from authoritarian regime to full democracy, but usually not without significant loss of life. Both Germany and Japan were authoritarian before and during World War II, but have since become very free countries. Hopefully this will occur in the aforementioned Arabian countries as well – time will tell.

Conclusion

This is the third article showing a relationship between freedom and its effects on people (the first two are here and here). Based on the data, this series of articles (strongly) suggests that people thrive more in free countries than oppressed ones. In this particular instance, there is a relationship between freedom and low homicide rates as well as a similar one for authoritarian regimes. All things being equal, this author chooses to live freely. Without that freedom, it wouldn’t be possible to even find data for such an article as this much less publish it. Oppression is only beneficial to the oppressors.



Questions:
1) When looking at history, is there an increasing or decreasing trend in the number of full democracies?
2) How many homicides are not reported?
3) What would this map look like if all wrongful deaths were accurately reported?

Data:
Code:
These graphs were generated using the ‘ggplot2‘ package within the R programming language. In the future, different plotting packages will begin to be seen here, including 3d plots and trellis plots. Stay tuned!
1st graph:

ggplot(subset(homicide.merge.frame, Source.Level.1=='Police'), aes(x=Index, y=Rate, group=Category, fill=Category)) +
    geom_boxplot() +
    ylab("Homicides per 100,000") +
    xlab("Democracy Index") +
    opts(title="Flawed Democracies Produce Hightest Homicide Rates",
        legend.title = theme_blank(),
        panel.background = theme_blank())
2nd graph:

ggplot(globe, aes(long, lat, group=group)) +

    geom_polygon(data = dem.globe.index.frame, aes(x=long, y=lat, fill=Category, group=group), size=0.2) +
    geom_polygon(colour="black", alpha=0.2) +
    
    ylab("Latitude") +
    xlab("Longitude") +
    
    opts(title="Government Category Map",
        legend.title = theme_blank(),
        panel.background = theme_blank())
  
Further Reading:

To leave a comment for the author, please follow the link and comment on their blog: Graph of the Week.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)