Every year in POS 5737, we have a histogram contest. I’ll give you a chance up improve your submissions after feedback. Then we have a department-wide vote.
Clark and Golder (2006) write the following:
These strategic considerations indicate that electoral institutions modify the relationship between socioeconomic cleavages and the number of parties. In particular, this framework indicates that there are two reasons why a country might have a small number of parties. First, it could be the case that the demand for parties is low because there are few social cleavages. In this situation, there would be few parties whether the electoral institutions were permissive or not. Second, it could be the case that the electoral system is not permissive. In this situation, there would be a small number of parties even if the demand for political parties were high. Only a polity characterized by both a high degree of social heterogeneity and a highly permissive electoral system is expected to produce a large number of parties. This line of reasoning generates the following hypothesis: Social heterogeneity increases the number of parties, but only when electoral institutions are sufficiently permissive.
We have the following data (from the authors) to evaluate this claim:
# load packages
library(tidyverse)
# load data
cg <- read_rds("data/parties.rds")
# quick look
glimpse(cg)
## Rows: 555
## Columns: 10
## $ country <chr> "Albania", "Albania", "Albania", "Argentina", "Ar…
## $ year <dbl> 1992, 1996, 1997, 1946, 1951, 1954, 1958, 1960, 1…
## $ average_magnitude <dbl> 1.00, 1.00, 1.00, 10.53, 10.53, 4.56, 8.13, 4.17,…
## $ eneg <dbl> 1.106929, 1.106929, 1.106929, 1.342102, 1.342102,…
## $ enep <dbl> 2.190, 2.785, 2.870, 5.750, 1.970, 1.930, 2.885, …
## $ upper_tier <dbl> 28.57, 17.86, 25.80, 0.00, 0.00, 0.00, 0.00, 0.00…
## $ en_pres <dbl> 0.00, 0.00, 0.00, 2.09, 1.96, 1.96, 2.65, 2.65, 3…
## $ proximity <dbl> 0.00, 0.00, 0.00, 1.00, 1.00, 0.20, 1.00, 0.20, 1…
## $ social_heterogeneity <fct> Bottom 3rd of ENEG, Bottom 3rd of ENEG, Bottom 3r…
## $ electoral_system <fct> Single-Member District, Single-Member District, S…
Do the following:
hw02/
and initialize git.hw02
, and
publish the initial files up to GitHub as a part of the pos5737
organization, but naming the repo hw02-first-last
(not
HW02-First-Last
or HW02_First_Last
; precision
matters).R/
subdirectory of hw02/
.R/histogram-exercises.R
.data/
subdirectory of hw02/
.parties.rds
. Move (or save) parties.rds
to
hw02/data/
. The data page has a link to the codebook.R/duverger.R
. In this script, do the following:
glimpse()
to
quickly create an overview of the data..pdf
preferred, otherwise .tiff
). Eventually, I’ll print this
off and tape it to my door for everyone to see. (I like to save my plots
to a figs/
subdirectory.).png
version to use
here.)