Teaching with TwoRavens:
Replicating Fearon and Laitin (2003)

PIC


Fearon and Laitin (2003) is a landmark study on civil wars. It shows that many of the post-Cold War civil conflicts were not due to ethnic differences, but rather to factors that enabled insurgencies to thrive. These factors include mountainous terrain, low GDP, high population, and political instability.
 
This document will guide you through a replication of the statistical results in Fearon and Laitin (2003) using TwoRavens.

1 Access the data

Follow the link to the Teaching with TwoRavens dataverse. Click on the Fearon and Laitin replication dataset. Next to the “Download” button for the file repdata2.tab, click “Explore.” This should open a page, as shown in figure 1.1


PIC

Figure 1: TwoRavens loaded with the Fearon and Laitin data.


In this module we will replicate the statistical analyses presented in Fearon and Laitin (2003). Their replication file, retrieved from http://web.stanford.edu/group/ethnic/publicdata/publicdata.html, reads as follows:

/* .do File to produce Table 1 results from replication data set */  
 
use repdata ,clear  
 
/* Model #1 */  
logit onset warl gdpenl lpopl lmtnest ncontig Oil nwstate instab polity2l ethfrac relfrac ,nolog  
 
/* Model #2 */  
logit ethonset warl gdpenl lpopl lmtnest ncontig Oil nwstate instab polity2l ethfrac relfrac if second > .049999,nolog  
 
/* Model #3 */  
logit onset warl gdpenl lpopl lmtnest ncontig Oil nwstate instab anocl deml ethfrac relfrac ,nolog  
 
/* Model #4 */  
logit emponset empwarl empgdpenl emplpopl emplmtnest empncontig Oil nwstate instab empethfrac ,nolog  
 
/* Model #5 */  
logit cowonset cowwarl gdpenl lpopl lmtnest ncontig Oil nwstate instab anocl deml ethfrac relfrac ,nolog

This is a replication script for Stata, so some knowledge of Stata syntax is required. logit means that we are using the logistic regression. The first variable name after logit is the dependent variable, which in this case is either onset, ethonset, emponset, or cowonset. In Stata syntax, the variable names following the dependent variable are the independent variables.

All of these variables are listed in the Data Selection panel of TwoRavens, under the Variables tab. If you mouseover these variable names, or click on them and mouseover the pebble in the center panel, you can view additional summary statistics, a brief description of the variable, and see its distribution.

Note that for Model #2, Fearon and Laitin subset the data for all observations where second > 0.49999, and estimates the model on that subset. Finally, the no log at the end of each line suppresses some of the information that Stata automatically prints to the console, and is not relevant for us here.

2 Instructions for Replicating Fearon and Laitin Models

Begin with a clear modeling space. This means no variables are selected and thus no pebbles are in the center panel.

2.1 Model #1

The resulting image in the center panel should appear like figure 2. Now that the relationships among variables have been specified, we now select the appropriate statistical model:


PIC

Figure 2: Relationships in Fearon and Laitin’s Model #1.


At this point, the variables have been selected, the relationships among them specified, and statistical model has been selected. Now, estimate the model:

Once the model is estimated, the results will appear in the right panel under the Results tab. Click the Models tab to return the right panel to the model list.

2.2 Model #2

Notice that we need to estimate this model on a subset of the data. Specifically, on the subset where second > .049999.

Once the model is estimated, the results will appear in the right panel under the Results tab. You may toggle between Model 1 and Model 2 to see different sets of results. Click the Models tab to return the right panel to the model list.

2.3 Model #3

Once the model is estimated, the results will appear in the right panel under the Results tab. Click the Models tab to return the right panel to the model list.

2.4 Model #4

Once the model is estimated, the results will appear in the right panel under the Results tab. Click the Models tab to return the right panel to the model list.

2.5 Model #5

Once the model is estimated, the results will appear in the right panel under the Results tab.

3 Results and Replication

In the Results tab, all five models will be listed, as seen in figure 3. Click on the models to toggle through the results. For a complete replication script in R, including all system information necessary for a complete replication of your results, click on the Replication link in the lower left.


PIC

Figure 3: Results after estimating Fearon and Laitin models.


These results should be identical to the results in Fearon and Laitin’s Table 1, which appears below:


PIC

Figure 4: Fearon and Laitin (2003) Table 1


4 Extensions

At this point, it is straightforward to perform additional robustness checks or extensions on any of these five models using variables in the data.

For example, notice that there is a dummy variable in the data called colfra. This variable indicates whether the state is a former French colony. On a different sample, Collier and Hoeffler (2002) investigate whether being a former French colony makes one less likely to experience a civil war. They find that the coefficient is negative, but not statistically significant at 0.05.

Using the Fearon and Laitin data, we can test the hypothesis that being a former French colony makes one less likely to experience a civil war by including the colfra variable in Fearon and Laitin’s model.

As we can see, the coefficient is negative, but not statistically significant at 0.05. This is consistent with the findings in Collier and Hoeffler (2002).

References

   Collier, Paul and Anke Hoeffler. 2002. “On the incidence of civil war in Africa.” Journal of conflict resolution 46(1):13–28.

   Fearon, James D and David D Laitin. 2003. “Ethnicity, insurgency, and civil war.” American political science review 97(01):75–90.