<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Kai Arzheimer &#187; voters</title> <atom:link href="http://www.kai-arzheimer.com/blog/tag/voters/feed/" rel="self" type="application/rss+xml" /><link>http://www.kai-arzheimer.com/blog</link> <description>A political science blog</description> <lastBuildDate>Sat, 21 Jan 2012 19:06:37 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Robust Regression of Aggregate Data in Stata</title><link>http://www.kai-arzheimer.com/blog/robust-regression-aggregate-data-stata/</link> <comments>http://www.kai-arzheimer.com/blog/robust-regression-aggregate-data-stata/#comments</comments> <pubDate>Sat, 14 Jan 2012 20:45:00 +0000</pubDate> <dc:creator>kai</dc:creator> <category><![CDATA[Data and Methods]]></category> <category><![CDATA[My Stuff]]></category> <category><![CDATA[Political Science]]></category> <category><![CDATA[aggregate data]]></category> <category><![CDATA[ecological fallacy]]></category> <category><![CDATA[Greens]]></category> <category><![CDATA[MM]]></category> <category><![CDATA[municipalities]]></category> <category><![CDATA[regression]]></category> <category><![CDATA[rhineland-palatinate]]></category> <category><![CDATA[robreg]]></category> <category><![CDATA[robust]]></category> <category><![CDATA[stata]]></category> <category><![CDATA[voters]]></category><guid isPermaLink="false">http://www.kai-arzheimer.com/blog/?p=1006</guid> <description><![CDATA[I&#8217;m currently working on an analysis of the latest state election in Rhineland-Palatinate using aggregate data alone, i.e. electoral returns and structural information, which is available at the level of the state&#8217;s roughly 2300 municipalities. The state&#8217;s Green party (historically very weak) has roughly tripled their share of the vote since the last election in [...]]]></description> <content:encoded><![CDATA[<p>I&#8217;m currently working on an analysis of the latest state election in <a class="zem_slink" title="Rhineland-Palatinate" href="http://en.wikipedia.org/wiki/Rhineland-Palatinate" rel="wikipedia">Rhineland-Palatinate</a> using aggregate data alone, i.e. electoral returns and structural information, which is available at the level of the state&#8217;s roughly 2300 municipalities. The state&#8217;s Green party (historically very weak) has roughly tripled their share of the vote since the last election in 2006, and I want to know were all these additional votes come from. And yes, I&#8217;m treading very careful around the very large potential ecological fallacy that lurks at the centre of my analysis, regressing Green gains on factors such as tax receipts and distance from next university town, but never claiming that the rich or the students or both turned to the Greens.</p><p>One common problem with this type of analysis is that not all municipalities are created equal. There is a surprisingly large number of flyspeck villages with only a few dozen voters on, whereas the state&#8217;s capital boasts more than 140,000 registered voters. Most places are somewhere in between. Having many small municipalities in the regression feels wrong for at least two reasons. First, small-scale changes of political preferences in tiny electorates will result in relatively large percentage changes. Second, the behaviour of a relatively large number of voters who happen to live in a small number of relatively large municipalities will be grossly underrepresented, i.e. the countryside will drive the results.</p><p><span id="more-1006"></span></p><p>My PhD supervisor, who did a lot of this stuff in his time, used to weigh municipalities by the size of their electorates to deal with these problems. But this would lead to pretty extreme weights in my case. Moreover, while voters bring about electoral results, I really don&#8217;t want to introduce claims about individual behaviour through the back door.</p><p>My next idea was to weigh municipalities by the square root of the size their electorates. Why? In a sense, the observed behaviour is like a sample from the underlying distribution of preferences, and the reliability of this estimate is proportional to the square root of the number of people in a given community. But even taking the square root left me with weights that were quite extreme, and the concern regarding the level of analysis still applied.</p><p>Then I realised that instead of weighing by size, I could simply <a title="Weighting Survey Data: Not Necessarily a Brilliant Idea" href="http://www.kai-arzheimer.com/blog/weighting-survey-data-not-necessarily-a-brilliant-idea/" target="_blank">include the size of the electorate as an additional independent variable to correct for potential bias</a>. But this still left me exposed to the danger of extreme outliers (think small, poor, rural communities where the number of Green voters goes up from one to four, a whopping 300 per cent increase) playing havoc with my analysis. So I began reading up on robust regression and its various implementations in Stata.<img class="alignright" src="http://upload.wikimedia.org/wikipedia/commons/b/b9/Line_with_outliers.svg" alt="Line with outliers Robust Regression of Aggregate Data in Stata" width="431" height="431" title="Robust Regression of Aggregate Data in Stata photo" /></p><p>The basic idea of robust regression is that real data are more likely than not a mixture of (at least) two mechanisms: the &#8220;true model&#8221; whose coefficients we want to estimate one the one hand, and some other process(es) that contaminate the data on the other. If these contaminating data points are far away from the multivariate mean of the x-Variables (outliers) and deviate substantially from the true regression line, they will bias the estimates.</p><p><a class="zem_slink" title="Robust regression" href="http://en.wikipedia.org/wiki/Robust_regression" rel="wikipedia" target="_blank">Robust regression</a> estimators are able to deal with a high degree of contamination, i.e. they can recover the true parameters even if there are many outliers amongst the data points. The downside is that the older generation of robust estimators also have a low efficiency (the estimates are unbiased but have a much higher variance than regular OLS-estimates).</p><p>A number of newer (post-1980) estimators, however, are less affected by this problem. One particular promising approach is the MM estimator, that has been implemented in Stata ados by <a href="http://ideas.repec.org/e/pve73.html" target="_blank">Veradi</a>/Croux (<a href="ideas.repec.org/c/boc/bocode/s457057.html" target="_blank">MMregress</a>) and by Ben <a href="http://ideas.repec.org/e/pja61.html" target="_blank">Jann</a> (<a href="ideas.repec.org/c/boc/bocode/s457114.html" target="_blank">robreg mm</a>). Jann&#8217;s ado seems to be faster and plays nicely with his esttab/estout package, so I went with that.</p><p>The MM estimator works basically by identifying outliers and weighing them down, so it amounts to a particularly sophisticated case of weighted least squares. Using the defaults, MM claims to have 85 per cent of the efficiency of OLS while being able to deal with up to 50 per cent contamination. As you can see in the table, the MM estimates deviate somewhat from their OLS counterparts. The difference is most pronounced for the effect of tax receipts (hekst).</p><p>robreg mm has an option to store the optimal weights. I ran OLS again using these weights (column 3), thereby recovering the MM estimates and demonstrating that MM is really just weighted least squares (standard errors (which are not very relevant here) differ, because robreg uses the robust variance estimator). This is fascinating stuff, and I&#8217;m looking forward to a forthcoming book by Jann and Veradi on robust regression in Stata (to be published by Stata Press in 2012).</p><pre>                     OLS              MM            WLS  

greenpct2006        0.193***        0.329***        0.329***
                 (0.0349)        (0.0592)        (0.0278)   

hekst               0.311***        0.634***        0.634***
                 (0.0894)         (0.124)        (0.0688)   

senioren          -0.0744***       -0.100***       -0.100***
                 (0.0131)        (0.0149)       (0.00994)   

kregvoters11      -0.0125        -0.00844        -0.00844
                 (0.0146)       (0.00669)       (0.00982)   

kbevdichte         -0.433        -0.00750        -0.00750
                  (0.464)         (0.330)         (0.326)   

uni                 1.258           0.816           0.816
                  (1.695)         (0.765)         (1.137)   

lnunidist          -0.418**        -0.372**        -0.372***
                  (0.127)         (0.113)        (0.0918)   

_cons               8.232***        7.078***        7.078***
                  (0.627)         (0.663)         (0.461)</pre><div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=0cbcd4ef-3dc6-4b9b-8610-afb3a9085e9e" alt=" Robust Regression of Aggregate Data in Stata"  title="Robust Regression of Aggregate Data in Stata photo" /></a></div><div class="su-linkbox" id="post-1006-linkbox"><div class="su-linkbox-label">Link to this post!</div><div class="su-linkbox-field"><input type="text" value="&lt;a href=&quot;http://www.kai-arzheimer.com/blog/robust-regression-aggregate-data-stata/&quot;&gt;Robust Regression of Aggregate Data in Stata&lt;/a&gt;" onclick="javascript:this.select()" readonly="readonly" style="width: 100%;" /></div></div>]]></content:encoded> <wfw:commentRss>http://www.kai-arzheimer.com/blog/robust-regression-aggregate-data-stata/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Call for Papers: Perspectives on the Radical Right</title><link>http://www.kai-arzheimer.com/blog/call-for-papers-perspectives-on-the-radical-right/</link> <comments>http://www.kai-arzheimer.com/blog/call-for-papers-perspectives-on-the-radical-right/#comments</comments> <pubDate>Mon, 08 Dec 2008 12:14:32 +0000</pubDate> <dc:creator>kai</dc:creator> <category><![CDATA[My Stuff]]></category> <category><![CDATA[Political Science]]></category> <category><![CDATA[cee]]></category> <category><![CDATA[central europe]]></category> <category><![CDATA[conference]]></category> <category><![CDATA[eastern europe]]></category> <category><![CDATA[ecpr]]></category> <category><![CDATA[extreme right]]></category> <category><![CDATA[parties]]></category> <category><![CDATA[populist right]]></category> <category><![CDATA[potsdam]]></category> <category><![CDATA[radical right]]></category> <category><![CDATA[right]]></category> <category><![CDATA[voters]]></category> <category><![CDATA[western europe]]></category><guid isPermaLink="false">http://polsci.wordpress.com/2008/12/08/call-for-papers-perspectives-on-the-radical-right/</guid> <description><![CDATA[Finally, the call for papers for the ECPR&#8217;s 5th conference (at Potsdam, September 10-12 2009) is out. Our section on the Radical Right will consist of the following nine panels: The Radical Right in Central and Eastern Europe The Internationalisation of the Radical Right Will Fascism return? On the Borderline Between Protest and Violence: Political [...]]]></description> <content:encoded><![CDATA[<p>Finally, the call for papers for the ECPR&#8217;s 5th conference (at Potsdam, September 10-12 2009) is out. Our <a href="http://polsci.wordpress.com/2008/06/21/section-perspectives-on-the-radical-right-2/" target="_blank">section on the Radical Right</a> will consist of the following nine panels:</p><ul><li>The Radical Right in Central and Eastern Europe</li><li>The Internationalisation of the Radical Right</li><li>Will Fascism return?</li><li>On the Borderline Between Protest and Violence: Political Movements of the New Radical Right</li><li>Consequences of the surge of anti-immigration parties</li><li>The Radical Right in Western Europe</li><li>Inside the Radical Right: An Internalist Perspective</li><li>Party-based Euroscepticism in Western and Eastern Europe</li><li>Neighbourhood Effects Revisited: the Visualisation of Immigrants and Radical Right-Wing Voting</li></ul><p><span id="more-145"></span></p><p>Each panel can have up to five paper givers, so the section offers us a chance to bring together cutting edge research on the Populist/Extreme/Radical Right from various subfields (parties, voters, rational choice, normative theory &#8211; you name it). Please submit your abstract via the the electronic submission system to the appropriate panel(s).</p><p>Technorati-Tags: <a class="performancingtags" rel="tag" href="http://technorati.com/tag/ecpr">ecpr</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/potsdam">potsdam</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/radical right">radical right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/extreme right">extreme right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/populist right">populist right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/western europe">western europe</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/eastern europe">eastern europe</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/cee">cee</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/central europe">central europe</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/right">right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/conference">conference</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/parties">parties</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/voters">voters</a></p><div class="su-linkbox" id="post-145-linkbox"><div class="su-linkbox-label">Link to this post!</div><div class="su-linkbox-field"><input type="text" value="&lt;a href=&quot;http://www.kai-arzheimer.com/blog/call-for-papers-perspectives-on-the-radical-right/&quot;&gt;Call for Papers: Perspectives on the Radical Right&lt;/a&gt;" onclick="javascript:this.select()" readonly="readonly" style="width: 100%;" /></div></div>]]></content:encoded> <wfw:commentRss>http://www.kai-arzheimer.com/blog/call-for-papers-perspectives-on-the-radical-right/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>What Drives the Extreme Right Vote: Protest, Neo-Liberalism or Anti-Immigrant Sentiment?</title><link>http://www.kai-arzheimer.com/blog/extreme-right-vote-protest-neo-liberalism-anti-immigrant-sentiment/</link> <comments>http://www.kai-arzheimer.com/blog/extreme-right-vote-protest-neo-liberalism-anti-immigrant-sentiment/#comments</comments> <pubDate>Fri, 29 Aug 2008 18:21:23 +0000</pubDate> <dc:creator>kai</dc:creator> <category><![CDATA[Article]]></category> <category><![CDATA[My Stuff]]></category> <category><![CDATA[Political Science]]></category> <category><![CDATA[comparative politics]]></category> <category><![CDATA[european social survey]]></category> <category><![CDATA[extreme right]]></category> <category><![CDATA[far right]]></category> <category><![CDATA[immigration]]></category> <category><![CDATA[italy]]></category> <category><![CDATA[populist right]]></category> <category><![CDATA[radical right]]></category> <category><![CDATA[sem]]></category> <category><![CDATA[structural equation modelling]]></category> <category><![CDATA[voters]]></category> <category><![CDATA[voting]]></category> <category><![CDATA[western europe]]></category><guid isPermaLink="false">http://polsci.wordpress.com/?p=72</guid> <description><![CDATA[Everyone just seems to know that the voters of the Extreme Right hate foreigners in general and immigrants in particular, but robust comparative evidence for the alleged xenophobia &#8211; Radical Right vote link is scarce. Moreover, many of the published analyses are based on somewhat outdated (i.e. 1990s) data, and alternative accounts of the extreme [...]]]></description> <content:encoded><![CDATA[<p>Everyone just seems to know that the voters of the <a href="http://www.kai-arzheimer.com/Extreme-Right.html" title="extreme right research project" target="_blank">Extreme Right</a> hate foreigners in general and immigrants in particular, but robust comparative evidence for the alleged xenophobia &#8211; Rad<a href="http://polsci.files.wordpress.com/2008/08/vb.jpg"><img class="size-full wp-image-73 alignright" src="http://polsci.files.wordpress.com/2008/08/vb.jpg" alt="vb What Drives the Extreme Right Vote: Protest, Neo Liberalism or Anti Immigrant Sentiment?" width="140" height="191" title="What Drives the Extreme Right Vote: Protest, Neo Liberalism or Anti Immigrant Sentiment? photo" /></a>ical Right vote link is scarce. Moreover, many of the published analyses are based on somewhat outdated (i.e. 1990s) data, and alternative accounts of the <a href="http://www.kai-arzheimer.com/Extreme-Right.html" title="extreme right research project" target="_blank">extreme right</a> vote (the &#8220;unpolitical&#8221; protest hypothesis and the hypothesis that the Far Right in Western Europe attracts people with &#8220;neo-liberal&#8221; economic preferences, championed by Betz and Kitschelt in the 1990s) do exist. Just a few days ago, a journal has accepted a paper by me in which I test these three competing hypotheses using (relatively) recent data from the European Social Survey and a little Structural Equation Modelling. As it turns out, <a href="http://www.kai-arzheimer.com/ideology-protest-extreme-right-vote.html" target="_blank">protest and neo-liberalism have no statistically significant impact on the Extreme Right vote whatsoever. Anti-immigrant sentiment, however, plays a crucial role for the Extreme Right in all countries but Italy.</a> Its effects are moderated by party identification and general ideological preferences. Moreover, the effect of immigrant sentiment is moderate by general ideological preferences and party identification. I conclude that comparative electoral research should focus on the circumstances under which immigration is politicised. Wasn&#8217;t it blindingly obvious?</p><p>Technorati-Tags: <a class="performancingtags" rel="tag" href="http://technorati.com/tag/extreme right">extreme right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/radical right">radical right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/populist right">populist right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/far right">far right</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/sem">sem</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/structural equation modelling">structural equation modelling</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/western europe">western europe</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/italy">italy</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/immigration">immigration</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/comparative politics">comparative politics</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/european social survey">european social survey</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/voting">voting</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/voters">voters</a></p><div class="su-linkbox" id="post-72-linkbox"><div class="su-linkbox-label">Link to this post!</div><div class="su-linkbox-field"><input type="text" value="&lt;a href=&quot;http://www.kai-arzheimer.com/blog/extreme-right-vote-protest-neo-liberalism-anti-immigrant-sentiment/&quot;&gt;What Drives the Extreme Right Vote: Protest, Neo-Liberalism or Anti-Immigrant Sentiment?&lt;/a&gt;" onclick="javascript:this.select()" readonly="readonly" style="width: 100%;" /></div></div>]]></content:encoded> <wfw:commentRss>http://www.kai-arzheimer.com/blog/extreme-right-vote-protest-neo-liberalism-anti-immigrant-sentiment/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Finally: New book on the Extreme Right Vote in Western Europe, 1980-2002</title><link>http://www.kai-arzheimer.com/blog/finally-new-book-on-the-extreme-right-vote-in-western-europe-1980-2002/</link> <comments>http://www.kai-arzheimer.com/blog/finally-new-book-on-the-extreme-right-vote-in-western-europe-1980-2002/#comments</comments> <pubDate>Wed, 28 May 2008 12:39:00 +0000</pubDate> <dc:creator>kai</dc:creator> <category><![CDATA[Book]]></category> <category><![CDATA[My Stuff]]></category> <category><![CDATA[europe]]></category> <category><![CDATA[extreme]]></category> <category><![CDATA[extreme right]]></category> <category><![CDATA[populist]]></category> <category><![CDATA[radical]]></category> <category><![CDATA[right]]></category> <category><![CDATA[vote]]></category> <category><![CDATA[voters]]></category> <category><![CDATA[voting]]></category> <category><![CDATA[western]]></category><guid isPermaLink="false">http://polsci.wordpress.com/2008/05/28/finally-new-book-on-the-extreme-right-vote-in-western-europe-1980-2002/</guid> <description><![CDATA[It&#8217;s almost unbelievable: after some six months of communication problems with the publishers, my recent book on the extreme right vote in Western Europe since the 1980s is finally out and ready for you to order and read (qualification: if you read German). If you don&#8217;t read German, you might still be interested in a [...]]]></description> <content:encoded><![CDATA[<p><a target="_blank" href="http://www.amazon.de/exec/obidos/ASIN/3531160656/diridisarzhei-21"><img style="max-width:800px;" src="http://www.kai-arzheimer.com/extreme-rechte-small.jpg" align="left" title="Finally: New book on the Extreme Right Vote in Western Europe, 1980 2002 photo" alt="extreme rechte small Finally: New book on the Extreme Right Vote in Western Europe, 1980 2002" /></a> It&#8217;s almost unbelievable: after some six months of communication problems with the publishers, my recent book on the <a href="http://www.kai-arzheimer.com/Extreme-Right.html" title="extreme right research project" target="_blank">extreme right</a> vote in Western Europe since the 1980s is finally out and ready for you to order and read (qualification: if you read German). If you don&#8217;t read German, you might still be interested in a brief English <a target="_blank" href="http://www.kai-arzheimer.com/Extreme-Right.html">summary of my findings on the Extreme Right vote</a>, including various presentations and other goodies.</p><div class="su-linkbox" id="post-28-linkbox"><div class="su-linkbox-label">Link to this post!</div><div class="su-linkbox-field"><input type="text" value="&lt;a href=&quot;http://www.kai-arzheimer.com/blog/finally-new-book-on-the-extreme-right-vote-in-western-europe-1980-2002/&quot;&gt;Finally: New book on the Extreme Right Vote in Western Europe, 1980-2002&lt;/a&gt;" onclick="javascript:this.select()" readonly="readonly" style="width: 100%;" /></div></div>]]></content:encoded> <wfw:commentRss>http://www.kai-arzheimer.com/blog/finally-new-book-on-the-extreme-right-vote-in-western-europe-1980-2002/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 1624/1747 objects using disk: basic

Served from: www.kai-arzheimer.com @ 2012-02-07 01:44:39 -->
