Leaders’ Ages

The Economist used some graphs to show “Leaders of Western economies are getting younger, even as their populations age”. Naturally my first question was “what about New Zealand?”

David Friggens
2018-11-25

When Emmanual Macron was (about to be) elected president of France it was notable that he was relatively young — both the youngest president since 1848, and the first to be younger than the median age of the country. The Economist noted that there seems to be a trend for Western leaders to be getting younger whilst their populations age, and produced some nice graphs showing the data for France, Britain, Germany and USA.

Figure from http://www.economist.com/blogs/graphicdetail/2017/05/daily-chart-0
Figure from http://www.economist.com/blogs/graphicdetail/2017/05/daily-chart-0

New Zealand Prime Ministers

New Zealand got its own young and exciting leader last year in Jacinda Ardern. How uncharacteristic is her “youth”1 for New Zealand?

There does seem to be a general downwards trend (reminding me of Simpson’s paradox), but there does seem to be a clear “generational” jump. Despite being younger than Macron, Ardern just misses out on being under the median age (though not for women).

Notes

Edit

Thanks to Paul Murrell for pointing out that I had a glaring issues of Nash and Holyoake appearing to share power for three years. I’d missed that Holyoake became PM two months before the 1957 election, which he lost, before beating Nash in 1960. I manually fixed the underlying data (Wikipedia only lists the dates of first entering office and last leaving, rather than all separate terms), but have filtered out the two month stint to reduce clutter in the graph.

As an aside, this issue of repeating prime ministers is one reason why I didn’t try to produce the same graph for Australia. At least there is a Twitter feed that gives good granularity.

Data

Code listing


library(magrittr)
library(readr)
library(dplyr)
library(rvest)
read_html("https://en.wikipedia.org/wiki/List_of_Prime_Ministers_of_New_Zealand_by_age") %>% 
  html_node("table") %>% 
  html_table() %>% 
  filter(`Prime Minister` != "Prime Minister") %>% # header at end
  transmute(
    first_name = str_replace(`Prime Minister`, '([- A-Za-z]+), ([- A-Za-z]+)\\2 \\1', '\\2'),
    last_name = str_replace(`Prime Minister`, '([- A-Za-z]+), ([- A-Za-z]+)\\2 \\1', '\\1'),
    birth_date = substring(`Date of birth`, 1, 10) %>% ymd(),
    age = substring(`Age at beginning of(first) term`, 1, 2) %>% as.integer(),
    start_date = `Start date of(first) term` %>%  str_replace('.*\\(([0-9-]+)\\)', '\\1') %>% ymd(),
    end_date = `End date of(final) term` %>% str_replace('\\[[0-9]+\\]', '') %>% str_replace('.*\\(([0-9-]+)\\)', '\\1') %>% ymd()
  ) %>% 
  write_csv("data/nzpm.csv")

library(readr)
library(dplyr)
library(lubridate)
library(ggplot2)
library(xkcd)

nzpm <- 
  read_csv("data/nzpm.csv") %>% 
  filter(start_date > ymd("1949-12-01")) %>% 
  mutate(end_date = if_else(is.na(end_date), today(), end_date),
         start_age = interval(birth_date, start_date) / years(1),
         end_age = interval(birth_date, end_date) / years(1)) %>% 
  # Remove Holyoake's first brief stint
  filter(!(last_name == "Holyoake" & start_age < 54))
nz_pop <-
  read.csv("data/nzpop.csv", skip = 4) %>% 
  mutate(year = year %>% paste0("-06-30") %>% ymd())

ggplot(nzpm) +
  geom_segment(aes(x = start_date, xend = end_date,
                   y = start_age, yend = end_age)) +
  geom_point(aes(x = start_date, y = start_age)) +
  geom_line(data = nz_pop,
            aes(x = year, y = median_age),
            color = "blue") +
  geom_text(aes(x = start_date, y = start_age,
                label = last_name),
            hjust = 1, vjust = 1, family = "xkcd") +
  annotate("text", x = ymd("1959-01-01"), y = 22, color = "blue",
           label = "Median age of population", family = "xkcd") +
  scale_y_continuous("Age", breaks = seq(20, 80, 10), limits = c(20, 80)) +
  scale_x_date("Year", breaks = floor_date(nzpm$start_date, unit = "year"), date_labels = "%y") +
  labs(title = "Age of New Zealand Prime Ministers",
       caption = "david.frigge.nz") +
  theme_xkcd()

  1. I don’t feel especially young these days, and certain things make me feel particularly old, so having big news stories fizzing with excitement about how someone my age is unbelievably young is nice.

Corrections

If you see mistakes or want to suggest changes, please create an issue on the source repository.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY 4.0. Source code is available at https://github.com/dakvid/dakvid.github.io, unless otherwise noted. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".