nepaldem | R Documentation |
Data from a study on the relationship between land tenure and voter turnout in the three rounds of parliamentary elections in Nepal from the restoration of democracy in 1990 to 1999. Data is at the district-level (N = 75). Variable names are taken directly from original dataset. The data is publicly available and has been included here with the endorsement of the authors.
data(nepaldem)
A data frame with 76 rows and 73 variables:
a column of identifiers. This column is not a variable
names of the district in Nepal used in analysis
average size of household in district
total land holding
number of households that own and cultivate land under single tenure
number of households that rent for service and cultivate land under single tenure
number of households that cultivate under single tenure and have another set up other than those above
number of households with more than one tenure
number of households that hold less than 1.0 hectares of land
number of households that hold 2 to 3 hectares of land
number of households that hold 4 to 5 hectares of land
number of households that hold 6 to 9 hectares of land
number of households with more than 10 parcels of land
total hectares of land
total parcels of land
subsection of number of households with fixed cash rent
subsection of households with fixed product rent
subsection of households participating in sharecropping
subsection of households participating in sharecropping
subsection of households with a mortgage
subsection of households with fixed cash rent
subsection of households with fixed product rent
subsection of households participating in sharecropping
subsection of households with rent for service
subsection of households with a mortgage
total number of households
number of landless households
total number of voters in 1991
total number of votes cast in 1991
total number of valid votes in 1991
constituency in 1991
total number of candidates contesting elections in 1991
total number of voters in 1994
total number of votes cast in 1994
total number of valid votes in 1994
constituency in 1994
total number of candidates contesting elections in 1994
total number of voters in 1999
total number of votes cast in 1999
total number of valid votes in 1999
constituency in 1999
total number of candidates contesting elections in 1999
population in 2001
HDI 1996 (index 0 to 1)
percent without access to institutional credit
access to institutional credit
total number of households participating in sharecropping
total number of households with fixed cash rent
total number of households with fixed product rent
total number of households with rent for service
total number of households with a mortgage
total number of people killed. This serves as a measure of political violence during the insurgency
election turnout for 1991 as measured by the percentage of registered voters who voted in the national parliamentary election
election turnout for 1994 as measured by the percentage of registered voters who voted in the national parliamentary election
election turnout for 1999 as measured by the percentage of registered voters who voted in the national parlimentary election
percent of sharecropping households
percent of households that have a fixed cash rent
percent of households that have a fixed product rent
percent of households that have rent for service
percent of households with a mortgage
landless households (in 1,000s)
total number of people killed (in 1,000s). This serves as a measure of political violence during the insurgency
caste and ethnic fractionalization
linguistic fractionalization
landless households (in 1,000s) gap
percent smallholder households gap
percent sharecropping households gap
percent rent for service households gap
percent fixed cash rent households gap
percent fixed product rent households gap
HDI 1996 (index 0 to 1) gap
population in 2001 (logged)
HDI 1996 (index 0 to 1) gap (positive values)
Journal of Peace Research Replication Datasets
Joshi, M., & Mason, T. D. (2008). Between democracy and revolution: peasant support for insurgency versus democracy in Nepal. Journal of Peace Research, 45(6), 765-782. doi: 10.1177/0022343308096155
data(nepaldem) library(MASS) library(modeLLtest) # Models from Joshi and Mason (2008) model_1991 <- rlm(percent_regvote1991 ~ landless_gap + below1pa_gap + sharecrop_gap + service_gap + fixmoney_gap + fixprod_gap + per_without_instcredit + hdi_gap1 + ln_pop2001 + totalcontestants1991 + cast_eth_fract, data = nepaldem) model_1994 <- rlm(percent_regvote1994 ~ landless_gap + below1pa_gap + sharecrop_gap + service_gap + fixmoney_gap + fixprod_gap + per_without_instcredit + hdi_gap1 + ln_pop2001 + totalcontestants1994 + cast_eth_fract, data = nepaldem) model_1999a <- rlm(percent_regvote1999 ~ landless_gap + below1pa_gap + sharecrop_gap + service_gap + fixmoney_gap + fixprod_gap + per_without_instcredit + hdi_gap1 + ln_pop2001 + totalcontestants1999 + cast_eth_fract, data = nepaldem) model_1999b <- rlm(percent_regvote1999 ~ landless_gap + below1pa_gap + sharecrop_gap + service_gap + fixmoney_gap + fixprod_gap + per_without_instcredit + totoalkilled_1000 + hdi_gap1 + ln_pop2001 + totalcontestants1999 + cast_eth_fract, data = nepaldem) # Comparing OLS to RR fit for model_1999b obj_cvdm_jm <- cvdm(percent_regvote1999 ~ landless_gap + below1pa_gap + sharecrop_gap + service_gap + fixmoney_gap + fixprod_gap + per_without_instcredit + totoalkilled_1000 + hdi_gap1 + ln_pop2001 + totalcontestants1999 + cast_eth_fract, data = nepaldem, method1 = "OLS", method2 = "RLM-MM") obj_cvdm_jm
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.