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.
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:
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.
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.
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:
Your paper must be written as if intended for publication as a research note in a political science journal. You may use R Markdown to write it, but there should be no raw R code or raw output in the paper itself. Now is the time to become familiar with the xtable and stargazer packages.
Examples of papers like this include:I will attempt to reproduce your analysis using the files you have provided. You will fail the assignment if I cannot reproduce your findings in this manner. Every table, every graph, and every reported finding must emanate from your replication script(s). Let me reiterate: Every table, every graph, and every reported finding must emanate from your replication script(s).
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:
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:
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