| stateCombined {krige} | R Documentation |
State Public Opinion Ideology in 2010
Description
These data present measures of ideology in 2010 for the 50 American states,
recorded as the variable krige.state. Forecasts are based on a kriging
model fitted over the 2008 Cooperative Congressional Election Survey (CCES),
paired with predictive data from the 2010 Census. Each state is listed twice,
as each state's public ideology is paired with the DW-NOMINATE common space
score of each of its two senators in 2011 (update from McCarty, Poole and
Rosenthal 1997).
Format
The stateCombined dataset has 100 observations (2 each for 50 states) and 13 variables.
STATEAThe FIPS code for the state.
krige.stateThe ideology of the average citizen in the state.
krige.state.varThe variance of ideology among the state's citizens.
congThe term of Congress studied–112 for this dataset.
idnoIdentification number for the senator–ICPSR numbers continued by Poole & Rosenthal.
stateThe ICPSR code for the state.
cdThe congressional district number–0 for senators.
statenmThe first seven letters of the state's name.
partyPolitical party of the senator. 100=Democrat, 200=Republican, 328=Independent.
nameLast name of the senator, followed by first name if ambiguous.
dwnom1First dimension DW-NOMINATE common space score for the senator. Higher values are usually interpreted as more right-wing, with lower values as more left-wing.
stateCDCombined index of
STATEAfollowed bycd.obamaBarack Obama's percentage of the two-party vote in the state in 2012.
Source
Ansolabehere, Stephen. 2011. "CCES, Common Content, 2008." Ver. 4.
McCarty, Nolan M., Keith T. Poole and Howard Rosenthal. 1997. Income Redistribution and the Realignment of American Politics. American Enterprise Institude Studies on Understanding Economic Inequality. Washington: AEI Press.
Minnesota Population Center. 2011. National Historical Geographic Information System: Version 2.0. Minneapolis, MN: University of Minnesota. ‘https://www.nhgis.org’
References
Jeff Gill. 2020. Measuring Constituency Ideology Using Bayesian Universal Kriging.
State Politics & Policy Quarterly. doi:10.1177/1532440020930197
Examples
# Descriptive Statistics
summary(stateCombined)
# Correlate Senators' DW-NOMINATE Scores with Public Opinion Ideology
cor(stateCombined$krige.state,stateCombined$dwnom1)
# Plot Senators' DW-NOMINATE Scores against Public Opinion Ideology
plot(y=stateCombined$dwnom1,x=stateCombined$krige.state,
xlab="State Ideology (Kriging)", ylab="Legislator Ideology (1st Dim., Common Space)",
main="U.S. Senate", type="n")
points(y=stateCombined$dwnom1[stateCombined$party==200],
x=stateCombined$krige.state[stateCombined$party==200],pch="R",col="red")
points(y=stateCombined$dwnom1[stateCombined$party==100],
x=stateCombined$krige.state[stateCombined$party==100],pch="D",col="blue")