Here is a density plot of a sample of Kenyans based on their year of birth. It's interesting to see the dips correlate with turbulent times; political and military. In the diagram below, the largest unexplained dip is in the early 1970s. Anyone care to explain it; Google and Wikipedia don't return any results?
Click here for a larger image
EDIT:
Could it be the 1969 Kisumu incident?

Here is the code used to produce the graph in R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require(ggplot2) | |
# load the data and cast the dob into dates | |
data <- read.table("/tmp/data.raw") | |
names(data) <- c("dob") | |
data$dob_date <- as.Date(as.character(data$dob), "%Y") | |
# build graph and preview | |
p = ggplot(data, aes(dob_date)) | |
p = p + geom_density() | |
p = p + scale_x_date(breaks = "5 year", minor_breaks = "1 year", labels = date_format("%Y")) | |
p + annotate("text", x = as.Date("1952", "%Y"), y=0, label = "MauMau", angle=90, hjust=0, size = 5) + annotate("text", x = as.Date("1941", "%Y"), y=0, label = "WW2", angle=90, hjust=0, size = 5) + annotate("text", x = as.Date("1963", "%Y"), y=0, label = "Independence", angle=90, hjust=0, size = 5) + annotate("text", x = as.Date("1982", "%Y"), y=0, label = "Coup attempt", angle=90, hjust=0, size = 5) | |
#save to png | |
png("/tmp/kenya_population_density.png", 1600, 800) | |
p + annotate("text", x = as.Date("1952", "%Y"), y=0, label = "MauMau", angle=90, hjust=0, size = 5) + annotate("text", x = as.Date("1941", "%Y"), y=0, label = "WW2", angle=90, hjust=0, size = 5) + annotate("text", x = as.Date("1963", "%Y"), y=0, label = "Independence", angle=90, hjust=0, size = 5) + annotate("text", x = as.Date("1982", "%Y"), y=0, label = "Coup attempt", angle=90, hjust=0, size = 5) | |
dev.off() |
No comments:
Post a Comment