State Party Platform Project

Daniel Coffey, PhD. This blog is about my text analysis of state political party platforms (and other texts) and is a source for state party platform data for social scientists and academics.
  • State Party Platforms Data
  • About Daniel Coffey
  • Blog
  • Author Archives: Daniel Coffey

    • Practicing Word Embeddings

      Posted at 2:43 am by Daniel Coffey, on March 3, 2023

      One of the things that is frustrating but really important to understand about coding political (or any) texts is how word usage varies by context. This is why sentiment dictionaries often perform poorly or have questionable validity. Human coding still really is the gold standard in terms of validity, but NLP has come a long way (ChatGTP!)

      A new paper from Pedro Rodriguez, Arthur Spirling, and Brandon M. Stewart, “Embedding Regression: Models for Context-Specific Description and Inference,” demonstrates a way to use word embeddings to distinguish between how words are used differently by different users, such as politicians or political parties. Their paper is coming out soon in the American Political Science Review. From the abstract:

      Social scientists commonly seek to make statements about how word use varies over circumstances—including time, partisan identity, or some other document-level covariate. For example, researchers might wish to know how Republicans and Democrats diverge in their understanding of the term “immigration.” Building on the success of pretrained language models, we introduce the à la carte on text (conText) embedding regression model for this purpose. This fast and simple method produces valid vector representations of how words are used—and thus what words “mean”—in different contexts. We show that it outperforms slower, more complicated alternatives and works well even with very few documents. The model also allows for hypothesis testing and statements about statistical significance. We demonstrate that it can be used for a broad range of important tasks, including understanding US polarization, historical legislative development, and sentiment detection. We provide open-source software for fitting the model.

      The program, conText, is easy to implement in R. I ran through their tutorial using my own dataset (about 30 state party platforms from 2020). Their example for immigration worked well on my own dataset. I don’t have a lot of experience with word embeddings, so I used their pre-trained embeddings. Again, I am a novice at this, but I think because the pre-trained feature-embeddings contained most of the words used in the state party platforms, the results made sense. I like the program and their example. For those who use Quanteda, it is very similar (by design) and this made it easier to adjust when I ran into problems. In fact, it only took me about an hour or so to run through the immigration example, and then to also try another issue, abortion. I am definitely impressed. conText doesn’t need all that much user input. Just a few words are enough for it to comb through the corpus and pick out issue-specific words and also disentangle the partisan differences. For example, using nearest neighbors for “abortion” and setting the top 20 nearest words, produced the following:

      Democratic words
      A tibble: 20 x 4
      target feature rank value
      1 a legal 1 0.639
      2 a access 2 0.579
      3 a services 3 0.536
      4 a provide 4 0.535
      5 a including 5 0.531
      6 a provides 6 0.480
      7 a ability 7 0.460
      8 a law 8 0.454
      9 a federal 9 0.441
      10 a funding 10 0.440
      11 a health 11 0.438
      12 a also 12 0.428
      13 a women 13 0.425
      14 a without 14 0.423
      15 a care 15 0.418
      16 a decision 16 0.418
      17 a support 17 0.416
      18 a rights 18 0.415
      19 a information 19 0.413
      20 a individuals 20 0.412

      Republican words

      A tibble: 20 x 4
      target feature rank value
      1 b human 1 0.610
      2 b support 2 0.556
      3 b child 3 0.506
      4 b act 4 0.497
      5 b legisl 5 0.464
      6 b urg 6 0.464
      7 b includ 7 0.458
      8 b feder 8 0.455
      9 b law 9 0.455
      10 b public 10 0.454
      11 b servic 11 0.454
      12 b fund 12 0.453
      13 b life 13 0.439
      14 b provid 14 0.434
      15 b also 15 0.431
      16 b right 16 0.428
      17 b children 17 0.419
      18 b effort 18 0.412
      19 b women 19 0.411
      20 b author 20 0.409

      (the word stemmings/lemmatization seems not to have been perfect). The idea is that “we know a word’s meaning by the company it keeps” and so differences in the nearest or most frequent neighbors indicate differences in partisan meaning. That said, it still largely picks out word differences (or differences in associations), and can’t necessarily provide insight into how the same word really is different. This is a point that they make in similar publications – researchers needs to make sense of the output and therefore expert knowledge and a good theory is necessary. Interpretation is for the researcher, not the machine. We can understand differences in the meaning of shared words (like “health”, “state”, or “government”), but this will require even more knowledge about the issues and how local (state) parties frame issues to make meaningful inferences.

      In the figure below, the Republican words associated with the use of abortion are on the left (I ran this quickly and didn’t get the chance to adjust the code to relabel the plot, hence the “a” and “b” in the plot), the Democratic words are on the right and the shared words (denoted by the triangle) are in the middle.

      I’ve been reading Text as Data (Justin Grimmer, Margaret Roberts and Brandon Stewart, Princeton 2022) and I appreciate the clarity of their approach. I also appreciate the sentiment that they express repeatedly that the researcher needs theory to make sense of the text and they “emphasize throughout our book that text as data methods should not displace the careful and thoughtful humanist” (2022: 9). This is a point I will be coming back to over the next several posts: with so many options of NLP, why bother with human coding anymore? I think this is a question that needs attention and I this is something I will be focusing on during my fall sabbatical (it got approved!!!!) and on this blog.

      Thanks for reading!

      | 0 Comments
    • American State Party Platforms, 1846-2017 Now Available at Harvard Dataverse!

      Posted at 6:41 pm by Daniel Coffey, on January 29, 2022

      I have been very lucky to be part of a group of researchers (including Dan Hopkins, Dan Galvin, Gerald Gamm, John Henderson, Joel Paddock, and Eric Schickler) who have collected just about every available state party platform issued between 1846 and 2017. The platforms are available via a bulk download at  https://doi.org/10.7910/DVN/KNOSHL.

      Again, I am grateful to be part of the this project. My contribution was, admittedly, small. Collecting state party platforms is a giant pain and I only wish I had access to this when I was in grad school working on my dissertation (it would have saved trips to North Carolina and Minnesota – although the interviews and the travelling were totally worth it). It’s a great example of open access/collaborative research.

      | 0 Comments
    • 2020 State Party Platforms in Review

      Posted at 7:59 pm by Daniel Coffey, on January 8, 2021

      I recently collected 28 state party platforms that were published in 2020. This is far less 100 if all  state parties issued a platform, but around 30 state parties never issue platforms and many others issue platforms every four years during midterm elections. So, while 28 is less than usual, it still represents a good sample of party debates that occurred during the last year.

      To analyze the texts, I used Quanteda, which I highly recommend. It’s easy to use, flexible and I have found it slightly easier to use than tidytext. Of course, regardless of which package one uses, it is really important for users to clean the text. I created my own list of stopwords in addition to the set of base words included in stopwords using the command:

      (remove = c(stopwords(“english”), mystopwords)

      This is really important because when implementing Wordfish or analyzing differences in word usage, state names will greatly affect the calculations as the proper names will be tagged as highly unusual and confuse them for an ideological signal.

      mystopwords <- c(“california”, “state”, “nebraska”, “democrat”,….

      First off, here are the obligatory word clouds (wordclouds have been called the mullets of text analysis):

      Looking closely, many words aren’t very meaningful: “support”, etc. This is why I think it’s important to really clean the text first, even for really basic analysis. One can think of this in two ways; frequent occurrence of neutral words can be a signal of a moderate platform filled with platitudes. On the other hand, as I have pointed out in some of the posts below, words that appear infrequently can communicate volumes, but they will be buried in pile of noise.

      Instead, I have used a keyness plot from Quanteda to highlight the greatest differences in vocabulary between the parties. This seems to communicate the usual differences between the parties. Democrats are focused on social welfare, as nearly all of these words focus on policies and/or beliefs that call for government intervention to reduce inequality: “access”, “afford”, “invest”, “care”, “insure” and “sustain” along with more specific policy words such as “disability”, “housing”, “climate” and “infrastructure.”

      In contrast, Republicans focus on freedom from”, using words such as “limit”, “resolve”, and “liberty” and “oppose” and policy words such as “illegal” and “property” . Interestingly, along with traditionally conservative words reflecting a belief in traditional authority (“god”, “parent”, and “authority”) Republicans also tend to focus on the legal structure of the state: “article”, “amend”, “federal”, “legislature”, “govern”, and “constitution.”

      The 2020 platforms were quite polarized; although this is nothing new compared to previous years (see posts below). I used Wordfish to estimate the ideology of each platform. These scores should be taken as estimates and this estimation is completely unsupervised, as further text cleaning is necessary. But, not surprisingly, the platforms are quite polarized, as the most conservative Democratic platform (South Carolina) is still much more liberal than the most left Republican platform (Arkansas). The North Dakota platform stands out as unusually conservative; this is confirmed by reports over the summer that the ND GOP was largely disassociating itself from the platform due to fairly extreme planks.

      Due to the pandemic, many state parties altered the process for drafting and approving their platforms. I haven’t had the chance yet to really explore the effects of this, but it may have impacted parties that draft planks from the precincts or through in-person caucuses. Many state parties did not hold in person caucuses this year (although caucus states had begun moving towards primaries after 2016) , and few parties had in-person conventions (although Democratic state parties were more likely to hold virtual conventions than Republicans).

      | 0 Comments
    • What is the Meaning of Green?

      Posted at 6:11 pm by Daniel Coffey, on June 12, 2019

      In addition to my research on text analysis, I also conduct research on public opinion and political psychology. About a decade ago, I had a battery of questions about environmental attitudes in the 2008 CCES. Recently, the “Green New Deal” has been a subject of considerable political debate between the parties.

      Among the questions, was a simple one: “What do you think of when you hear the word ‘green’”? Since the question appeared among a sample of environmental questions, respondents had been primed to think of the word in this sense (and not the political party or even the color). Responses, as I will cover below, are extremely revealing. What I like about this is that the open-ended nature of the question allows for variance in how citizens articulate their environmental beliefs. The responses illustrate many of the key findings in the subfield of political psychology.

      Political scientists have shown that citizens draw from elite discussions to formulate their own opinions. We usually see this with regard to closed-ended survey questions, in which citizen attitudes on issues polarize mirroring elite movements on issues, or changes in the political agenda being reflected in the public’s sense of the most important problem.

      In this case, reactions to the word “green” produce differences between partisan identifiers. Respondents can draw on a theoretically infinite pool of words, yet clear patterns emerge in the reaction to this question.  This can be shown in the word cloud of all responses. (Note: for most of this analysis, I used Quanteda package in R. It seems fairly easy to use (in the past, I have relied on the tm package and occasionally tidytext).

      greenwordcloud

      The dataset has about 4,000 words, about 1,000 of which are unique words. I’ve provided the obligatory wordcloud above. Wordclouds aren’t all that informative. Instead, simple bar charts of word frequencies tend to give a better sense of proportion in terms of how the words are used. The bar chart below is easier to read and we can see that the most commonly used words are fairly unsurprising; the term “green” generally is associated with environmentalism.

      Green Term Frequency

      These words tend to be used by nearly all respondents. In fact, using a  measure of text similarity, it is clear that partisans across the spectrum tend to draw on similar vocabularies.

                                      dem.txt        gopgreen.txt

      demgreen.txt    1.0000000    0.8445287

      gopgreen.txt   0.8445287    1.0000000

      indgreen.txt   0.8255080    0.8188555

      However, there are clear differences across parties and that is what I will be exploring in the rest of this post.  For example, Democratic respondents usually emphasize more positive language. The difference plot below shows the words with the largest differences using a “keyness” score. The plot below shows a striking difference in terms of how Democrats and Republicans conceptualize environmental issues. Remember, these are open-ended responses, so these words are the unfiltered expressions of what came to the respondents minds.

      Partisan Semantic Differences in Responses to “Green”keyness

      The words most likely to appear among Democratic respondents compared to Republican respondents are largely positive. Again, these aren’t surprising as they focus on reducing pollution, protecting the environment. A word like “footprint” is associated with “carbon” and the words like “keep”, “conserve”, “preserve” and “save” all express anxiety about environmental degradation. I suppose one could even draw a larger psychological claim about the orientation towards fragility. I have noted in looking at state party platforms that Democratic discussions on environmental issues are more aligned with Haidt’s purity foundation than any of the other moral foundations (or least as much are harm/care).

      The Republican words are far more likely to be adjectives than verbs and these are clearly pejorative. Al Gore takes up two of the most different words and the others, “hippie”, “hugger”, “idiot” and even “lie” make no mistake how this issue is perceived among those on the right. Interestingly, these terms aren’t  really ideological; they represent the affective nature of attitudes many political scientists how found characterizes mass partisan polarization.

      Democratic Green Sentiment

       

      Similarly, using sentiment analysis the same pattern emerges. Emotions are connected to the construction of opinions; apparent ideological differences seem to be rooted more in affect than policy. Sentiment analysis shows that the vocabulary of partisans differs markedly. So, these emotional differences paint a clear picture of how partisans conceptualize these issues in emotional terms. Democrats discuss environmental issues in largely positive terms. For Democrats, the environment is and there is optimism that government efforts will be successful. The negative words, such as “destroy” and “harm” are associated with the positive words, “clean” and “protect” as the same underlying sentiment is driving the use of both sets of words.

      Independents are more like Democrats, but there is some evidence of emotional ambivalence (for more on how ambivalence affects political reasoning, see here and here). In this case, independents use many of the same positive words that Democrats use, but their negative affect vocabulary is much more distinct. The negative and positive words are orthogonal; these are distinct sets of ideas that are generating the words the respondents use (I did find evidence in an unpublished paper that environmental issues generate a high degree of ambivalence). Words such as “problem”, “restrict” and “slow” are largely used when discussing environmental protection. In contrast, obviously words like “fake”, “hoax” and even “bullshit” are not describing the costs of environmental protection, but reflect a  rejection of the legitimacy of the issue. In other words, this is not ambivalence; the responses are not illustrative of someone struggling with internal conflict over competing or inconsistent goals or beliefs.

      Independent Green Sentiment

      Finally, the Republican sentiment is almost exclusively negative. What separates Republicans from independents in this regard is that they have a much larger vocabulary (partisan responses were longer than independent open-ended responses). “Bullshit” actually appears twice (“bs”) and the condemnation of the other side is more apparent indicating a threat response provoked by the use of “green” to describe environmental issues. The words such as “corrupt”, “extremist”, “greed”, “scam” and “idiot” all refer not to a preference for economic growth over environmental issues, but describe the perceived threat that Republicans identify coming from both the promoters and believers of climate change.

      GOP Green Sentiment

      While I had asked this survey question over a decade ago, the issues are in some ways more relevant today. Partisan responses about the environment are often framed as policy debates about the merits of economic growth and versus environmental protection. These responses, however, show that while this is the case for some respondents, the divide has more to do with subjective perceptions about the motives of the other side or the gravity of the issue. Responses are emotional, tapping into anger, anxiety and even enthusiasm. These responses were generated with little more than an ink-blot of priming, illustrating the biased-nature of information processing. One final note is that there is a considerable value to using open-ended survey questions, especially when they are conducted online, as the unstructured nature of these responses can be quite revealing in showing how citizens construct attitudes and opinions.

       

      | 0 Comments
    • New State of the Parties Edition!

      Posted at 4:03 pm by Daniel Coffey, on September 21, 2018

      The eighth edition of the State of the Parties just came out! It’s a great book with contributions from many of the leading political science researchers in American politics. As with previous editions, there are sections on public opinion, campaign finance and an expanded focus on the nature of the current party system in America and what changes it may be undergoing.

      State of the Parties

      As with previous editions, I have a chapter on state party platforms. What is different about my chapter this edition is the use of automated techniques to evaluate platform ideology. I used Wordscores to measure state party ideology instead of manual coding. In a future, I will show how the results vary based on the method used for coding.

      The main finding in my chapter is that state parties remain highly polarized. I did not find, however, much evidence of a divide within the parties. A lot has been made of the division between Establishment and Trump Republicans and between Establishment and Progressive Democrats. The state party platforms, however, do not reveal much evidence of this divide. It could be that state party platforms just aren’t a good measure of intra-party divisions (although my previous research does capture some meaningful diversity of agenda attention). Dan Hopkins recent book shows that parties are nationalizing and the  state party platforms over the last century show greater homogeneity within each party. I wonder, though, if this nationalization could also show when the parties are becoming internally divided. In other words, if the divisions are being fought at the national level, then factional struggles at the state level should reflect this (as seen in several recent primaries as well as control over state party organizations).

      I didn’t find evidence that states won by Clinton or Sanders were ideologically different; ditto for Trump versus states won by Establishment GOP candidates (there were some differences using sentiment analysis). Again, it could be the fact that platforms, because they aren’t written in every state and revised every year, won’t capture these divisions. Still, one of my conclusion was that newly engaged party activists have not sought to institutionalize their ideals into formal party documents as they have in the past. I wonder, however, as the Democratic Party moves away from caucuses, that this indicates past processes of party agenda formation are anachronistic. In an age of social media and online fundraising, the party organization is large and cumbersome mechanism to move when other smaller organizational tools and vehicles are available. As political scientists, we devote a lot of our research to understanding how parties as organizations reflect the goals of politicians, social movements, and activists. I just wonder if, as with many other institutions, parties will become less important in the coming years. Sure, it’s a big leap from a single year of state party platforms to this conclusion. Still, I think its worth thinking about how parties formalize their agendas and what this means about party organizational strength.

      | 4 Comments
    • Why Do State Parties Have Platform Planks on Foreign Policy?

      Posted at 8:42 pm by Daniel Coffey, on November 7, 2017

      State party platforms are great for learning about often obscure issues. It probably comes as no surprise that ethanol is a frequent topic for the Iowa state parties, planks on irrigation from the Colorado river show up in the New Mexico platforms and cattle in the Texas platforms.

      These hyper-local issues make sense for state parties. Citizens care about these issues and parties have to take positions on these issues in campaigns. Indeed, it wouldn’t make much sense to issue a platform if it was just a carbon-copy of the national platform (although this may be changing).

      So, it may come as a surprise that state parties tend to spend a lot of time (or space, which  I guess is a better noun) on foreign policy. This attention to an issue that constitutionally is outside the scope of state responsibility says a lot about the nature of state parties and polarization. This is an example, I think, of “signaling behavior“, in which the state parties are identifying themselves as faithful representatives of the party orthodoxy.

      To measure foreign policy attention, I coded all sentences dealing with foreign policy and terrorism for platforms written between 2000 and 2012, but I excluded statements on veterans,   immigration and trade and economic development. These are issues tend to address issues that state policy-makers have more control over.

      It turns out that foreign policy makes up a small, but significant part of state party platforms. State parties devote approximately four to six sentences out of every 100 to foreign policy. This may not seem like a lot, but among the other 24 issues I have coded for, this is about the middle in terms of attention. In 2004 and 2008, the relative attention to these issue was higher (slightly less than 10 percent). As seen in the density plot below, in some cases, the percentage of sentences devoted to foreign policy is much greater.

      FP Density Coffey

      The discussion is not cursory or filled with bland patriotic sentiments. Instead, parties often issue planks with highly detailed policy positions. Republican platforms, for example, often rail against “Agenda 21” or the “Law of the Sea”. The 2012 Texas Republican platform, for example, has an entire plank devoted to Agenda 21:

      The Republican Party of Texas should expose all United Nations Agenda 21 treaty policies and its supporting organizations, agreements and contracts. We oppose implementation of the UN Agenda 21 Program which was adopted at the Earth Summit Conference in 1992 purporting to promote a comprehensive program of sustainable development projects, nationally, regionally and locally. We oppose the influence, promotion and implementation of nongovernmental organizations, metropolitan and/or regional planning organizations, Councils of Government, and International Council for Local Environmental initiatives and the use of American (Texas) citizen’s taxes to promote these programs.

      The plank is more detailed than many state Republican platforms, but the tone and the detail of the position is not unusual. Similarly, many Democratic platforms are highly specific about what policies should guide the U.S. abroad. The 2012 Iowa Democratic platform endorses the “ratification or full participation” in 16 separate treaties and conventions , including the UN Convention on the Rights of Persons with Disabilities, Universal Declaration of Human Rights (UHDR), International Covenant on Economic, Social and Cultural Rights (ICESCR), Convention on the Elimination of all Forms of Discrimination against Women (CEDAW), Convention on the Rights of Children (CRC).

      The word clouds below capture some of the content differences in the agendas of state parties. The clouds are all state party platforms issued between 2010 and 2012; the blue cloud represents the most common words in Democratic platforms and the red cloud is the most common word used in Republican platforms.

      Dem Word Cloud

      Republican Word Cloud

      In fact, the parties are also quite polarized on foreign policy issues, but unlike gun control, neither party really “owns” this issue. Instead, across states, there is a fairly even distribution of ideological positioning.

      Ideological Positioning

      I am often asked why state parties care about these issues. To be honest, I don’t have a definitive answer. I suspect it has something to do with how the platforms are written. As social scientists, we often focus on the “data generating process” to understand social and political phenomena. In this case, the “bag of words” approach to textual analysis might miss the specificity of a narrow set of planks, yet I think these planks can tell us a lot about the structure of state party organizations. That means understanding how platforms are written, seeing the planks as the end product of a process that generated them.

      Here is my theory: when activists have a large role to play in state party organizations, the parties will be more ideological than parties that are more professional operations serving elected officials. The “amateur democrats” which James Q. Wilson recognized were becoming a major part of the political process in the 1960s, are engaged in politics precisely for ideological reasons. They genuinely care about issues in which they have no personal stake.

      I haven’t really come up with a great way to test this theory, but one (admittedly crude) measure of the influence of activists vs. party professionals is to see if there is a difference between the foreign policy content of states that have caucuses and those with primaries. Caucus states often have a platform process that begins at the precinct level (Minnesota is a good example). There, virtually any attendee can submit a plank for inclusion on the state party platform. The state platform committees work hard to make sure the platform starts at this hyper-local level. In other states, the platform is written by a central committee, often chaired by an elected official.

      I am currently looking at state party bylaws and contacting state parties to collect information about how their platforms are written. While political scientists have studied state party platforms, there has not been a lot of systematic data gathering on how platforms are written.

      Caucus Primary

      Anyway, some evidence can be seen in whether states held a caucus or a primary in the 2012 presidential election.  The evidence is not overwhelming, but there is more content devoted to foreign policy in caucus as opposed to primary states. This may also underestimate the difference; many primary states such as New York and New Jersey do not issue platforms at all, while almost all states that use a caucus have platforms.

      In short, party platforms are not always meant as literal statements of the party legislative agenda. They are, in part, team-building exercises. Taking stands on issues on a range of issues communicates to activists that they party is united on core principles. Foreign policy planks, then, seem to be clear examples of signaling behavior to activists.

      | 0 Comments
    • Do Republicans Own Gun Control Policy?

      Posted at 10:21 pm by Daniel Coffey, on March 4, 2017

      This is an earlier post that I am reposting. My on-going research into this topic indicates that Democratic state parties continue (into 2020) to draw on language and ideas that largely reflect gun rights, or at least equivocate on gun policy, while Republicans unambiguously support gun rights in their platforms. 

      In this post, I will explore the differences between and within state Republican and Democratic parties on gun control using 2012 state party platforms.  Most scholarly focus on party gun policy positions tends to be on congressional voting patterns or public opinion. State party platforms, however, provide unique insight into party positions. State parties use their platforms craft often detailed positions on a large range of issues, from education and economic issues to foreign policy and social-cultural issues.

      Elsewhere, I have explored whether state party positions reflect issue ownership or conflict extension. When an issue is “owned” by a party, the voting public tends to perceive that party as more competent on the issue. Most often, assessments of issue ownership are restricted to valence or consensus issues. Egan (2013) argues that consensus issues can divide parties over priorities, performance and policies, but not the fundamental goal of a growing economy or improving high school graduation rates. Egan argues that “the analytical relevance of the concept of issue ownership is largely limited to understanding the politics of consensus issues” (2013:17). Generally, studies of issue ownership are studies of public opinion. An issue is owned, as Petrocik argues, based on reputation; the public has more confidence that the party prioritizes the issue and will deliver on its promises.

      In this post, I will examine how gun control illustrates a pattern of issue ownership, even though it is not a valence issue. What is different in this analysis of issue ownership is that I am focusing on the sources of party issue attention, rather than what is really an outcome variable, the reputation of the parties on an issue in the eyes of the public. This look at issue ownership does not allow me to evaluate performance in implementing these policies, yet I can assess how the parties differently prioritize issues and to what degree they conflict on the policies surrounding the issue.

      There are several different outcomes that are possible. First, the parties can conflict on an issue directly, which would be an example of polarization and conflict extension. Second both parties can offer similar ideological views, which is predicted by the Downs and which finds empirical support in the work of Erikson, Wright and McIver (among many studies of state politics). Third, one party may address the issue while the other party does not, which is predicted by research on European party manifestos as a form of issue ownership.

      I will show that gun policy largely across states provides evidence of the third case, although in some circumstances. That is, Republicans devote more space to the issue than Democratic state parties and advocate clear ideological views, while Democratic state parties are more equivocal or silent (the first case).

      First, a note about state party platforms. In the platforms, state parties expend considerable space to articulate exactly what they believe in detailed terms both in policy specifics and in terms of the moral underpinnings of their beliefs. The platforms represent the formal positions of the state organizations, whether they are put together by the state party central committee or written by activists at the precinct level.   Certainly, state platforms cannot be said to represent the single view of an entire state party. Indeed, part of the value of studying these platforms is that they are windows into not only the core values of the parties, but the conflicts and tensions that exist within and across state parties.  As a result, they are a unique source for understanding the nuances of party issue stances. The platforms can be as long as the national platforms or as short as a few resolutions. Parties, therefore, have considerable freedom to articulate their issue positions. So, they are good place to look to identify the most important policy differences between the parties.

      Issue Space

      All states devote relatively little space to gun policy. I  have coded platforms into 25 issue categories. Most state party platform content is devoted to economic and budget issues, which take up about 20 percent of platform sentences. Other issues, such as education and the environment take up about 10 to 15 percent, although there is more variance on the amount devoted to these issues.  Gun policy, in contrast,  is the focus of about 1.39 percent of the sentences. In other words, a typical, platform that is 100 sentence long will have about 1-3 statements about gun policy.

      figure

      Republicans consistently devote more platform space (mean =2.3, SD = 1.5) to gun issues than Democrats (mean = .48, SD= .68). Of the 36 Democratic platforms I analyzed, almost half do not mention gun policy, compared to only two out of  35 Republican platforms do not mention gun policy. As can be seen in the chart below, the difference in issue space is consistent across nearly all states; only the Wyoming Democrats devote more space (as a percentage of total space) to gun policy than Wyoming Republicans.

      figure-1a

      Republicans consistently devote more platform space (mean =2.3, SD = 1.5) to gun issues than Democrats (mean = .48, SD= .68). Of the 36 Democratic platforms I analyzed, almost half do not mention gun policy, compared to only two out of  35 Republican platforms do not mention gun policy. As can be seen in the chart below, the difference in issue space is consistent across nearly all states; only the Wyoming Democrats devote more space (as a percentage of total space) to gun policy than Wyoming Republicans.

      rplot02

      Overall, Republican platform are always more conservative than Democratic platforms on gun policy. In fact, out of 35 Republican platforms, 31 have gun policies that score as more conservative than the overall policy positions in their state platform. For example, the California Republican Party has eight sentences on gun policy, seven of which were coded as -1, one of which was coded -.5. The overall score for these eight sentences is -.91, which is more conservative than the overall platform score of -.51. This pattern is common for the GOP; most state Republican parties put forward clearly conservative positions on gun policy, but more nuanced or moderate positions on other issues.

      rplot03

      In terms of specific policy proposals, in 2012 five Democratic platforms specially endorse background checks all nearly all five are the most liberal (CO, IA, MN, TX, WA).  Three Democratic platforms also support a ban on assault weapons (CA, NE, WA), while two others support a ban on concealed carry (NE, WI). In contrast, while two Republican platforms support background checks (CA, IL) most Republican platforms focus primarily on opposition to federal licensing. Seventeen platforms support concealed carry in some form, some form and three state parties oppose assault weapons bans (IA, NH , OK).

      rplot01

      On Gun Policy, Two Parties Separated by a Common Language

      A typical Democratic platform statement is the 2012 Delaware Democratic plank:

      The concept that , by acting responsibly and with respect for differing views on the  weapons issues , we can protect our  constitutional rights and keep our  communities and our children safe.

      Democratic platforms tend to equivocate more. That is, the statements tend to express support for gun control, while still acknowledging the right of gun ownership. For example, the Minnesota Democratic platform supports “Reasonable firearm policies that promote public safety and crime prevention without infringing on the rights of hunters and other sports enthusiasts.” The 2012 California Democratic Party plank supports “responsible gun ownership and reasonable gun safety and work with gun owners and sporting associations to promote gun safety education.” When Democrats support controls, they are usually modified, singling out child safely or keeping guns away from criminals.

      Word Clouds of Gun Policy Planks in Democratic and Republican State Platforms

      dem-total

      gop-cloud-full

      Republicans rarely demonstrate nuance in their positions. Words and phrases such as “fundamental”, “guarantee”, “immediate”, and “strict adherence” are common. For example, the Kansas Republicans “condemn frivolous lawsuits against firearms manufacturers, which are transparent attempts to deprive citizens of their rights.” The Iowa Republican platform states: “We demand full restoration of 2nd Amendment rights and call for a state law authorizing law-abiding citizens to carry firearms, open or concealed, without a permit.” The Missouri Republican Party supports the “strict enforcement of existing gun laws but not the creation of new and unnecessary gun control law” and that “there should be mandatory sentences for 49 criminals using a gun in the commission of a crime, or any other weapon or threat used to 50 debase, wound, or kill an innocent victim. We call on governments at all levels to strictly 51 enforce existing gun laws.”

      There are important language differences between the parties when it comes to gun policy. As the two word clouds show, there is some overlap, and since Republican platforms devote more space to these issues, their platforms use more words and so the Republican cloud is bigger. As evidence of the Republican “issue ownership” on this issue, Democrats tend to use words more associated with Republican (“right”, “gun”, “ownership”, “keep”) while Republicans use fewer words that appear in Democratic platforms (“check”, “ban”, “safe”, “background”). This difference can be seen more in word clouds of  the top ten words used by each party in their platforms. A different way to see differences in word choice and therefore policy views is by examining the most conservative and liberal platform positions. The table below shows the top words for five most conservative and five most liberal Democratic and Republican platforms.  Some patterns stand out.  None of the top ten words for liberal Democrats were shared by the other three grouping of state parties.  In fact, conservative Democrats and more moderate (relatively) Republicans use very similar words, sharing nearly every word and the only word these parties do not have in common, “own” ranks just outside of the top  ten for both groups. These word choices are significant; Republicans emphasize individuals and rights, while Democrats consciously invoke words like weapon and gun (other words in Democratic platforms not making this list include “ammun”, “manufa”, “childproof”). Republican words not appearing in Democratic platforms include those focusing on individuals “propert”, “famli” “person” infring” and “defend”, words which focus on individual rights).

      Top (stemmed) Words on Gun Policy

      Liberal Democrats Moderate Democrats Moderate Republicans Conservative Republicans
      1.gun

      1.right

      1.gun

      1.right

      2.background

      2. support 2.right 2.firearm
      2.check 3.firearm 3.law 3.arm
      4.firearm 4.gun 4.arm 4.constitut
      4.support 5.arm 4.citizen 5.bear
      5.safe 5.bear 4.support 6.amend
      6. weapon 5. keep 7.bear 7.state
      8.ban 8.citizen 7.firearm 7.support
      8. feder 8.law 7.keep 9.individu
      8. law 7.state 9.keep
      8. purchase 9.lawabid

      9.citizen
      9.law

       

      The table shows that moderate Democratic parties tend to use more “Republican” words compared to liberal Democratic parties. In other words, the lexicon of gun policy for state parties seems to be oriented towards gun rights rather than gun control.

      Conclusion

      While gun policy represents a clear dividing line between Democrats and Republicans in public opinion surveys, the data here indicate the Democrats are more internally divided than Republicans. The pattern here is of “issue ownership” even though this is a positional and not a valence issue. Democrats are silent or rarely explicitly oppose the dominant party on the issue. This is consistent with some measures of public opinion; a recent Pew Study found that over the last twenty years, support for gun rights has eclipsed support for gun control among the general public. Certainly, it is possible that the tragedy of Sandy Hook in December of 2012, after these platforms were issued may have ltered partisan discourse on gun policy. I am in the process of analyzing 2016 state party platforms and I will post those results later.

      The pattern here is one that varies by issue. State parties also address a number of other controversial issues, including immigration, climate change, education, taxes and civil rights. On these issues, the balance of attention and ideological divisions between the parties varies, which I will explore in future posts.

      | 1 Comment
    • State Party Platforms Blog

      Posted at 9:01 pm by Daniel Coffey, on February 26, 2016

      Hi, this is a new blog on state party platforms. I will be posting information about my own research, as well as analysis of state party platforms and occasional analysis of Ohio politics and text analysis of speeches, etc.

      There is a lot to be learned from these platforms, but they generally receive little attention. In fact, each year, I read every single published platform. As polarized as American parties are, they have an incredibly diverse set of issue agendas. So, hopefully, this blog can help to explore the different issue positions taken by state parties, as well as the conflicts between and within state parties. In my next post, I will explore party diversity on a hot-button topic: gun control. Daniel Coffey.

      | 0 Comments
    • Recent Posts

      • Practicing Word Embeddings
      • American State Party Platforms, 1846-2017 Now Available at Harvard Dataverse!
      • 2020 State Party Platforms in Review
      • What is the Meaning of Green?
      • New State of the Parties Edition!
    • Recent Comments

      Oliver Steffensen on Do Republicans Own Gun Control…
      statepartyplatforms on New State of the Parties …
      Adam on New State of the Parties …
      statepartyplatforms on New State of the Parties …
      Adam on New State of the Parties …
    • Archives

      • March 2023
      • January 2022
      • January 2021
      • June 2019
      • September 2018
      • November 2017
      • March 2017
      • February 2016
    • Follow State Party Platform Project on WordPress.com

Blog at WordPress.com.

  • Follow Following
    • State Party Platform Project
    • Already have a WordPress.com account? Log in now.
    • State Party Platform Project
    • Customize
    • Follow Following
    • Sign up
    • Log in
    • Report this content
    • View site in Reader
    • Manage subscriptions
    • Collapse this bar
 

Loading Comments...