Introduction

Origins of IPE

End of Gold Standard

Politics without economics

Embedded liberalism

Endogenous state theory

Counting the number of countries in the UN.

library(unvotes)
library(tidyverse)
library(lubridate)
left_join(un_votes, un_roll_calls) %>%
  mutate(year = year(date)) %>% 
  count(country, country_code, year) %>% 
  count(year) %>% 
  ggplot(aes(x = year, y = n)) +
  geom_line() +
  scale_x_continuous(breaks = seq(1945, 2020, 15)) +
  scale_y_continuous(breaks = seq(50, 200, 50)) +
  theme_light()
Number of countries in the UN

Figure 1: Number of countries in the UN

Next