Four deadlines are relevant:

This handout will first lay out the guidelines for the final paper itself, then the proposal, and finally the peer review.

Final Paper

You will begin by identifying a political science publication1 that includes a regression analysis. A good choice would be a piece that is published in a good journal and has publicly available replication data, but that hasn’t been analyzed to death.2 From there, your task is threefold:

  1. To reproduce the main findings in the original paper. Can you obtain the exact same coefficient and standard error estimates as reported in the original paper? If not, identify the differences between your findings and the original paper’s, and explain whether these differences are important for the conclusions we would draw from the analysis.

  2. To examine the robustness of the main findings. We have seen that researchers have many choices in the way they analyze data. Would slightly different choices have led to wildly different conclusions? Focus on areas where the assumptions of the original analysis strike you as doubtful.

  3. To extend the original analysis in a theoretically motivated way. Think of some additional hypotheses that would speak to the theory put forth in the original paper, and test them. At this stage you may (but don’t have to) bring in additional data from outside the replication file—if you choose to do so, be sure that the files can be merged!

Given that we have largely focused on the linear model in this class, I strongly recommend choosing to reanalyze a paper that employs linear models (which typically means the response variable is continuous). If you decide to neglect this advice and analyze a paper that uses a nonlinear model, please highlight this on your proposal so we can talk through it first.

An assignment like this is often called a replication project. True replication, however, entails collecting new data and running the same tests on it—a task that requires resources beyond what is available to you at the current stage of your careers.

Some notes on formatting and submission:

Proposal

Your proposal is a short (1–2 page) document that lays out what you intend to do in your final paper. The purpose of the proposal is to avoid problems arising at the last minute—to allow me to verify that what you’re thinking of doing is appropriate and has a good chance of becoming a successful final paper.

Your proposal needs to address a few key points:

Peer Review

A few weeks before the due date, you will turn in an initial draft to me and to a designated reviewer (see below). A week later, you will write a review to circulate to me and to your designated reviewee. Your tasks as a reviewer are twofold:

  1. To assess whether you were able to reproduce all of the findings in the initial draft, and if not, which findings you could not reproduce.
  2. To evaluate the initial draft’s choices of robustness checks and extensions. Are they well motivated by the theory being studied? Do they follow statistical best practices? Does the initial draft correctly interpret their findings? What other analyses would you suggest the author run?

In the interests of fairness, I have assigned reviewers randomly in round-robin fashion. You can see the code I used and your own designated reviewer and reviewee below.

set.seed(77)
students <- c("Nicole", "Dave", "Spencer", "HeeJu",
              "Sebastian", "Ginny", "Michael", "Adam")
students <- sample(students)
students <- c(tail(students, 1), students, head(students, 1))

for (i in seq(2, length(students) - 1)) {
    cat(students[i],
        "reviews",
        students[i - 1],
        "and is reviewed by",
        students[i + 1],
        "\n")
}
## Spencer reviews Nicole and is reviewed by Ginny 
## Ginny reviews Spencer and is reviewed by Michael 
## Michael reviews Ginny and is reviewed by Sebastian 
## Sebastian reviews Michael and is reviewed by Adam 
## Adam reviews Sebastian and is reviewed by Dave 
## Dave reviews Adam and is reviewed by HeeJu 
## HeeJu reviews Dave and is reviewed by Nicole 
## Nicole reviews HeeJu and is reviewed by Spencer

  1. If you are not a political scientist, you may choose a piece from your own field.

  2. Examples of papers that have been analyzed to death include Oneal and Russett’s “The Classical Liberals Were Right” and Fearon and Laitin’s “Ethnicity, Insurgency, and Civil War.”