QRMIAS: Eleventh Meeting

Quantitative Research Methods: Introduction to Applied Statistics

David Sichinava, Rati Shubladze
December 20, 2017

Eleventh Meeting

Today's plans

  • From ideas to regression models
  • Regression diagnostics (recap)

From ideas to regression models

  • Remember that replication is a cornerstone for the quantitative (social) science
  • Acemoglu, D., Johnson, S., Robinson, J. A., & Yared, P. (2008). Income and democracy. American Economic Review, 98(3), 808-42.

From ideas to regression models

  • To slightly paraphrase Acemoglu and colleagues,
    • Why are all OECD countries democracies, whilst most of non-democracies are located in sub-Saharan Africa or Southeast Asia?
  • Influential modernization theory tries to answer this question:
    • Specifically, higher per-capita income causes the country to become a democracy

From ideas to regression models (optional)

### data can be loaded from here: https://goo.gl/uWMEuc
figure3 <- read.csv("figure3.csv", stringsAsFactors = FALSE, sep="\t")

democracy <- lm(democ~consfirstaug+indcent+
              rel_catho80+rel_muslim80+rel_protmg80, 
              data=figure3)
growth <- lm(growth~consfirstaug+indcent+
               rel_catho80+rel_muslim80+rel_protmg80, 
             data=figure3)
democracy$residuals <- as.numeric(democracy$residuals)
growth$residuals <- as.numeric(growth$residuals)

residuals <- as.data.frame(cbind(democracy$residuals, growth$residuals))

names(residuals) <- c("democracy", "growth")

From ideas to regression models (optional)

ggplot(residuals, aes(x=growth, y=democracy))+
  geom_point()+
  geom_smooth(method="lm")+
  labs(x="Change in Log GDP per Capita, Independent of Historical Factors",
       y="Change in Democracy Independent of Historical Factors",
       title="Change in Democracy and Change in Income, 1500-2000",
       subtitle="Conditional on Historical Factors")

From ideas to regression models

  • Interesting? Drawing