Quantcast
Channel: CodeSection,代码区,网络安全 - CodeSec
Viewing all articles
Browse latest Browse all 12749

Number of births in the twentieth century by @ellis2013nz

0
0
Motivation

A couple of weeks back, Branko Milanovic asked on Twitter :

“Does anyone know a link to a calculation on how many people were born … in the entire 20th century?”

Somewhat surprisingly, no-one did. However, there was a calculation by the Population Research Bureau that about 108 billion people had walked the earth since 50,000 years ago. I gave myself the detective job of tracking done the data to make the estimates for just the twentieth century.

The necessary data is crude birth rates and total population numbers. Back to about 1950 there is excellent data available from the UN, but before that it is surprisingly hard to find from official sources.

Kremer’s long range global population estimates

The first useful thing I found was an interesting article in The Quarterly Jorunal of Economics by Michael Kremer on Population Growth and Technological Change: One Million B.C. to 1990

That got me this dramatic-looking set of numbers:

The vertical axes in those charts is on a logarithmic scale, so the growth rates in population there are truly astonishing. Humanity has exploded on this planet in a very short period of time, in the scale of things.

Here are just the growth rates:

Some interesting things here include:

the dip into negative territory in the thirteenth century, with Mongol wars and the Black Death; another bad time in the early seventeenth century with the 30 years war destroying Germany, and the collapse of the Ming dynasty in China; a dip around 1850 which I think is probably associated with the Taiping Rebellion in China. Despite its massive scale we saw a decline in growth but nowhere near down to negative territory; a final dip associated with World War I and subsequent influenza pandemic (years between 1900 and 1920); maximum growth rate in 1960 with rapid decline since.

There would be better sources now of the recent years, showing the steep decline continuing. For the record, the world population on current trends in declining growth rates will reach a maximum level of around 11 billion in 2100 .

I typed out Kremer’s numbers rather than muck around trying to read them electronically. Note that there seems to be an error in the third growth rate in his Table I on page 683; while all his other growth rates exactly match my calculations based on his population levels, for that particular number he has 0.000031 and I get 0.00012. I don’t think it matters much for the substance of his interesting arguments in that paper.

Here’s the R code to create those charts with Kremer’s numbers:

library(tidyverse) library(viridis) library(gridExtra) library(ggrepel) library(readxl) library(testthat) set.seed(123) #-----------------total population size--------------- kremer <- data_frame( year = c(-1000000, -300000, -25000, -10000, -(5:1)*1000, -500, -200, 1, 200, 400, 600, 800, 10:16 * 100, 1650, 1700, 1750, 1800, 1850, 1875, 1900, 192:199 * 10), pop = c(0.125,1,3.34,4,5,7,14,27,50,100,150,170,190,190,200,220, 265,320,360,360,350,425,545,545,610,720,900,1200,1325, 1625,1813,1987,2213,2516,3019,3693,4450,5333) * 1000000 ) %>% mutate(growth = lead((pop / lag(pop)) ^ (1 / (year - lag(year))) - 1)) # note there's an error in Kremer's 3rd growth rate: 0.000031 should be 0.000012 # Global populations p1 <- kremer %>% ggplot(aes(x = year, y = pop)) + geom_line() + geom_point() + scale_y_log10(label = comma, limits = c(1e5, 5e9)) + scale_x_continuous("Year") + labs(caption = " ") p2 <- p1 %+% filter(kremer, year > -2000) grid.arrange(p1 + labs(y = "Global human population (logarithmic scale)") + ggtitle("World population", "1 million BC to 1999"), p2 + labs(y = "") + ggtitle("", "1,000 BC to 1999") + labs(caption = "Source: Kremer, 1993, 'Population Growth and Technological Change: One Million B.C. to 1990"), ncol = 2) # Global growth rates kremer %>% filter(year > -2000) %>% ggplot(aes(x = year, y = growth)) + geom_path() + geom_point() + geom_text_repel(aes(label = year), colour = "steelblue") + scale_y_continuous("Annual growth rate", label = percent) + labs(caption = "Source: Kremer, 1993", x = "Year") + ggtitle("World population growth rates", "1000 BC to present")

Gapminder’s country-level birth rate and population estimates

That was all very interesting and gave me at least some benchmark population values covering the whole twentieth century (not just the post-WWII period covered in the official sources), but I also need crude birth rates how many people born per 1,000 people living. This is the only practical way of getting estimates of the number of births; just growth rates alone won’t do it because the same growth rate could mean quite different birth rates, depending on death rates.

Eventually I realised that Gapminder publish estimates of many variables, including basic demographic data, back to 1800 at the country level. Gapminder Foundation is the Swedish NGO founded by the recently deceased and much missed Hans Rosling and friends and family, promoting increased understanding of development issues in a historical context. It’s possible to combine these to get global estimates by summing up population numbers, and creating population-weighted averages for birth rates.

This process gives me this plausible-looking set of estimates of the world’s crude birth rate over the last 200 years or so:

These numbers are close enough (for my purposes) to the UN’s figures for the overlapping period from 1950 onwards.

I also quite like this representation of the population and the birth rate together as a connected scatter plot:

Obviously, once we have crude birth rates and population numbers, we just need to multiply them together to get an estimated number of births per year:

What’s with that jump in the 1980s? Well, the decline in crude birth rate stalled at around 27 or 28 for 15 years or so, and with the massive increase in population coming from rising living standards post-WWII that was enough for a major increase in number of babies being born. By the 1990s, crude birth rates resumed a precipitous decline. There also might be a story here about demographic collapse in post-Soviet Union countries; or there might be a quirk in the data arising from how I aggregated up the country level data.

Here’s the code to get the data from Gapminder and draw those charts:

#---------------birth rate--------------- # harder # See https://ourworldindata.org/fertility-rate # nothing before 1950 # The gapminder R package only has data for every 5 years, from 1952 # but the gapminder website has the full data # crude birth rate per country per year if(!file.exists("cbr.xlsx")){ download.file("https://docs.google.com/spreadsheet/pub?key=tUSeGJOQhafugwUvHvY-wLA&output=xlsx", destfile = "cbr.xlsx", mode = "wb") } cbr_orig <- read_excel("cbr.xlsx") names(cbr_orig)[1] <- "country" cbr <- cbr_orig %>% gather(year, birth_rate, -country) %>% mutate(year = as.integer(year)) # population per country per year if(!file.exists("pop.xlsx")){ download.file("https://docs.google.com/spreadsheet/pub?key=phAwcNAVuyj0XOoBL_n5tAQ&output=xlsx", destfile = "pop.xlsx", mode = "wb") } pop_orig <- read_excel("pop.xlsx") names(pop_orig)[1] <- "country" pop <- pop_orig %>% gather(year, total_population, -country) %>% mutate(year = as.integer(year)) combined <- cbr %>% full_join(pop, by = c("year", "country")) %>% arrange(country, year) %>% mutate(births = total_population * birth_rate / 1000) %>% filter(!is.na(total_population)) ave_br <- combined %>% filter(!is.na(birth_rate)) %>% group_by(year) %>% summarise(birth_rate = sum(birth_rate * total_population) / sum(total_population), total_population = sum(total_population)) %>% mutate(year_lab = ifelse(year %% 50 == 0, year, ""), people_born = birth_rate * total_population / 1000) set.seed(123) ave_br %>% ggplot(aes(x = year, y = birth_rate)) + geom_line() + geom_point() + geom_text_repel(aes(label = year_lab), colour = "steelblue") + labs(caption = "Source: Estimated from Gapminder country level data for crude birth rate and population", x = "Year", y = "Estimated global crude birth rate per 1,000 population") + ggtitle("Estimated global crude birth rate", "1800 to present") ave_br %>% ggplot(aes(x = total_population / 1e6, y = birth_rate, label = year_lab)) + geom_path() + geom_text_repel(colour = "steelblue") + scale_x_continuous("Estimated global population", label = comma_format(suffix = "m")) + labs(y = "Estimated global crude birth rate per 1,000 population", caption = "Source: Estimated from Gapminder country level data for crude birth rate and population") + ggtitle("Estimated global crude birth rate", "1800 to present") ave_br %>% ggplot(aes(x = year, y = people_born / 1e6)) + geom_line() + scale_y_continuous("People born per year", label = comma_format(suffix = "m")) + labs(caption = "Source: Estimated from Gapminder country level data for crude birth rate and population", x = "Year") + ggtitle("Estimated global births", "1800 to present") Checking against a more definitive source for more recent years

I was a bit worried about that bump in the 1980s, so I thought I should have a look at a more definitive data source for recent decades rather than relying on my population-weighted average of Gapminder’s country level data. I grabbed the World crude birth rate from the World Development Indicators for 1960 onwards:

Unsurprisingly it’s a bit flaky in the early years, but I decided the two were close enough that I could stick to using my Gapminder estimates. Here’s how I got that World Bank data:

#------------------better source for more recent years---------- library(WDI) wdi_cbr <- WDI(country = "1W", indicator = "SP.DYN.CBRT.IN", start = 1950, end = 2020) CairoSVG("..http://freerangestats.info/img/0141-compare.svg", 7, 6) wdi_cbr %>% select(year, SP.DYN.CBRT.IN) %>% rename(wdi = SP.DYN.CBRT.IN) %>% left_join(ave_br, by = "year") %>% mutate(year_lab = ifelse(year %% 5 == 0, year, "")) %>% ggplot(aes(x = birth_rate, y = wdi, label = year_lab)) + geom_abline(slope = 1, intercept = 0, colour = "orange") + geom_path() + geom_text_repel(colour = "steelblue") + labs(x = "Population-weighted average of Gapminder country data", y = "World Bank's World Development Indicators") + coord_equal() + ggtitle("Comparing two sources on global birth rates")

Cumulative births

Finally, the answer to the question, which turns out to be about 9.75 billion:

The Gapminder data doesn’t have values for every year, but it’s straightforward to interpolate them and get the estimated number of births. That was the final bit of calculating to do.

I saved the birth numbers from 1800 onwards as a CSV in case anyone is interested in them.

Here’s the code for the final step:

#-----------cumulative births------------- twentieth_c <- data_frame( year = 1901:2000, births = approx(ave_br$year, ave_br$people_born, xout = 1901:2000)$y ) %>% mutate(cum_births = cumsum(births)) twentieth_c %>% ggplot(aes(x = year, y = cum_births / 1e6)) + geom_line() + scale_y_continuous("Cumulative births in the twentieth century", label = comma_format(suffix = "m")) + labs(x = "Year", caption = "Source: Estimates based on Gapminder country level data for crude birth rate and population") + ggtitle("How many people born in the twentieth century?", paste("An estimated", format(round(sum(twentieth_c$births / 1e6)), big.mark = ","), "million")) # Write a version from 1800 onwards in case people want it: published_data <- data_frame(year = min(ave_br$year):max(ave_br$year)) %>% mutate( births = round(approx(ave_br$year, ave_br$people_born, xout = year)$y)) %>% mutate(cum_births = cumsum(births))


Viewing all articles
Browse latest Browse all 12749

Latest Images

Trending Articles





Latest Images