<?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; terrorism</title> <atom:link href="http://www.kai-arzheimer.com/blog/tag/terrorism/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>Are Germans More Afraid of Neo-Nazis Than of Islamists?</title><link>http://www.kai-arzheimer.com/blog/germans-afraid-neo-nazis-islamists/</link> <comments>http://www.kai-arzheimer.com/blog/germans-afraid-neo-nazis-islamists/#comments</comments> <pubDate>Fri, 02 Dec 2011 20:20:00 +0000</pubDate> <dc:creator>kai</dc:creator> <category><![CDATA[Data and Methods]]></category> <category><![CDATA[My Stuff]]></category> <category><![CDATA[Politics]]></category> <category><![CDATA[access panel]]></category> <category><![CDATA[binomial]]></category> <category><![CDATA[distribution]]></category> <category><![CDATA[exact confidence intervals]]></category> <category><![CDATA[extremism]]></category> <category><![CDATA[germany]]></category> <category><![CDATA[Islam]]></category> <category><![CDATA[multinomial]]></category> <category><![CDATA[neo nazi]]></category> <category><![CDATA[proportions]]></category> <category><![CDATA[right wingers]]></category> <category><![CDATA[stata]]></category> <category><![CDATA[terrorism]]></category> <category><![CDATA[yougov poll]]></category><guid isPermaLink="false">http://www.kai-arzheimer.com/blog/?p=991</guid> <description><![CDATA[Whose afraid of whom? The liberal German weekly Zeit has commissioned a YouGov poll which demonstrates that Germans are more afraid of right-wing terrorists than of Islamist terrorists. The question read &#8220;What is, in your opinion, the biggest terrorist threat in Germany?&#8221; On offer were right-wingers (41 per cent), Islamists (36.6 per cent), left-wingers (5.6 [...]]]></description> <content:encoded><![CDATA[<div id="outline-container-1" class="outline-2"><h2 id="sec-1">Whose afraid of whom?</h2><div id="text-1" class="outline-text-2"><p>The liberal German weekly Zeit has commissioned a YouGov poll which demonstrates that <a href="http://www.zeit.de/politik/deutschland/2011-12/rechtsextremismus-umfrage-yougov" target="_blank">Germans are more afraid of right-wing terrorists than of Islamist terrorists</a>. The question read &#8220;What is, in your opinion, the biggest terrorist threat in Germany?&#8221; On offer were right-wingers (41 per cent), Islamists (36.6 per cent), left-wingers (5.6 per cent), other groups (3.8 per cent), or (my favourite) &#8220;no threat&#8221; (13 per cent). This is a pretty daft question anyway. Given the news coverage of the Neo-Nazi gang that has killed at least ten people more or less under the eyes of the authorities, and given that the authorities have so far managed to stop would-be terrorists in their tracks, the result is hardly surprising.</p><p><span id="more-991"></span></p><p>Nonetheless, the difference of just under five percentage points made the headlines, because there is a subtext for Zeit readers: Germans are worried about right-wing terrorism (a few weeks ago many people would have denied that there are right-wing terrorists operating in Germany), which must be a good thing, and they are less concerned about Islamist terrorists, which is possibly a progressive thing. Or something along those lines.</p><p>But is the five-point difference real?</p><p>YouGov has interviewed 1043 members of its online access panel. If we assume (and this is a heroic assumption) that these respondents can be treated like a simple random sample, what are the confidence intervals?</p></div></div><div id="outline-container-2" class="outline-2"><h2 id="sec-2">Binomial Confidence Intervals</h2><div id="text-2" class="outline-text-2"><p>First, we could treat the two categories as if they were distributed as binomial and ask Stata for exact confidence intervals.</p><pre>cii 1043 round(1043*.41)
cii 1043 round(1043*.366)</pre><p>The confidence intervals overlap, so we&#8217;re lead to think that the proportions in the population are not necessarily different. But the two categories are not independent, because the &#8220;not right-wingers&#8221; answers include the &#8220;Islamists&#8221; answers and vice versa, so the multinomial is a better choice.</p></div></div><div id="outline-container-3" class="outline-2"><h2 id="sec-3">Multinomial Model</h2><div id="text-3" class="outline-text-2"><p>It is easy to re-create the univariate distribution of answers in Stata:</p><pre>set obs 5
gen threat = _n
lab def threat 1 "right-wingers" 2 "islamists" 3 "left-wingers" 4 "other" 5 "no threat"
lab val threat threat

gen number = round(1043* 0.41) in 1
replace number = round(1043* 0.366) in 2
replace number = round(1043* 0.056) in 3
replace number = round(1043* 0.038) in 4
replace number = round(1043* 0.13) in 5
expand number</pre><p>Next, run an empty multinomial logit model</p><pre>mlogit threat,base(5)</pre><p>The parameters of the model reproduce the observed distribution exactly and are therefore not very interesting, but the estimates of their standard errors are available for testing hypotheses:</p><pre>test [right_wingers]_cons = [islamists]_cons</pre><p>At the conventional level of 0.05, we cannot reject the null hypothesis that both proportions are equal in the population, i.e. we cannot tell if Germans are really more worried about one of the two groups.</p></div></div><div id="outline-container-4" class="outline-2"><h2 id="sec-4">Simulation</h2><div id="text-4" class="outline-text-2"><p>Just for the fun of it, we can carry out one additional test and ask a rather specific question: If both proportions are 0.388 in the population and the other three are identical to their values in the sample, what is the probability of observing a difference of at least 4.4 points in favour of right-wingers?</p><p>The idea is to sample repeatedly from a multinomial with known probabilities. This could be done more elegantly by defining a program and using Stata&#8217;s simulate command, but if your machine has enough memory, it is just as easy and possibly faster to use two loops to generate/analyse the required number of variables (one per simulation) and to fill them all in one go with three lines of mata code. Depending on the number of trials, you may have to adjust maxvars</p><pre>local trials = 10000
foreach v of newlist s1-s`trials' {
qui gen `v' = .
}

mata:
probs =(.388,.388,.056,.038,.13)
st_view(X.,.,"s1-s`trials'",)
X[.,.] = rdiscrete(1043,`trials',probs)
end

local excess = 0

forvalues sample = 1/`trials' {
qui tab s`sample' if s`sample' == 1
local rw = r(N)
qui tab s`sample' if s`sample' == 2
local isl = r(N)
if (`rw' / 1043 * 100) - (`isl' / 1043 * 100) &gt;=4.4 local excess = `excess' +1
}

display "Difference &gt;=4.4 in `excess' of `trials' samples"</pre><p>Seems the chance of a 4.4 point difference is between 5 and 6 per cent. This probability is somewhat smaller than the one from the multinomial model because the null hypothesis is more specific, but still not statistically significant. And the Zeit does not even have a proper random sample, so there is no scientific evidence for the claim that Germans are more afraid of right-wing extremists than of Islamists, what ever that would have been worth. Bummer.</p></div></div><div class="su-linkbox" id="post-991-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/germans-afraid-neo-nazis-islamists/&quot;&gt;Are Germans More Afraid of Neo-Nazis Than of Islamists?&lt;/a&gt;" onclick="javascript:this.select()" readonly="readonly" style="width: 100%;" /></div></div>]]></content:encoded> <wfw:commentRss>http://www.kai-arzheimer.com/blog/germans-afraid-neo-nazis-islamists/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Remixes of the paranoid suspect your neighbours posters</title><link>http://www.kai-arzheimer.com/blog/remixes-of-the-paranoid-suspect-your-neighbours-posters/</link> <comments>http://www.kai-arzheimer.com/blog/remixes-of-the-paranoid-suspect-your-neighbours-posters/#comments</comments> <pubDate>Fri, 27 Mar 2009 12:54:56 +0000</pubDate> <dc:creator>kai</dc:creator> <category><![CDATA[Politics]]></category> <category><![CDATA[boing-boing]]></category> <category><![CDATA[british transport police]]></category> <category><![CDATA[database state]]></category> <category><![CDATA[fun]]></category> <category><![CDATA[london]]></category> <category><![CDATA[paranoia]]></category> <category><![CDATA[terrorism]]></category> <category><![CDATA[uk]]></category><guid isPermaLink="false">http://www.kai-arzheimer.com/blog/?p=235</guid> <description><![CDATA[As a light-hearted follow-up to my post on the growth of the database state in the UK, here is a link to boing-boings &#8220;remix the British Transport Police&#8217;s paranoid turn-in your neighbour posters&#8221; campaign. Most of the pictures sent in are really good, and many of them look almost-real, which is slightly disturbing. Link to [...]]]></description> <content:encoded><![CDATA[<p>As a light-hearted follow-up to my post on the <a href="www.kai-arzheimer.com/blog/2009/03/24/rowntree-trust-britain-a-database-state-and-not-even-efficient-at-that/" target="_blank">growth of the database state in the UK</a>, here is a link to boing-boings</p><div class="wp-caption alignright" style="width: 436px"><a href="http://www.boingboing.net/2009/03/26/remixes-of-the-paran.html"><img title="Baby turns in parents as terrorism suspect" src="http://craphound.com/images/3382925390_ea4117f014.jpg" alt="3382925390 ea4117f014 Remixes of the paranoid suspect your neighbours posters" width="426" height="213" /></a><p class="wp-caption-text">Well done, junior!</p></div><p><span id="more-235"></span></p><p><a href="http://www.boingboing.net/2009/03/26/remixes-of-the-paran.html" target="_blank">&#8220;remix the British Transport Police&#8217;s paranoid turn-in your neighbour posters&#8221;</a> campaign. Most of the pictures sent in are really good, and many of them look almost-real, which is slightly disturbing.</p><div class="su-linkbox" id="post-235-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/remixes-of-the-paranoid-suspect-your-neighbours-posters/&quot;&gt;Remixes of the paranoid suspect your neighbours posters&lt;/a&gt;" onclick="javascript:this.select()" readonly="readonly" style="width: 100%;" /></div></div>]]></content:encoded> <wfw:commentRss>http://www.kai-arzheimer.com/blog/remixes-of-the-paranoid-suspect-your-neighbours-posters/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Student of radical Islam must not study al-Qaeda documents</title><link>http://www.kai-arzheimer.com/blog/student-of-radical-islam-must-not-study-al-qaeda-documents/</link> <comments>http://www.kai-arzheimer.com/blog/student-of-radical-islam-must-not-study-al-qaeda-documents/#comments</comments> <pubDate>Tue, 29 Jul 2008 21:59:25 +0000</pubDate> <dc:creator>kai</dc:creator> <category><![CDATA[Political Science]]></category> <category><![CDATA[Politics]]></category> <category><![CDATA[al-qaeda]]></category> <category><![CDATA[Islam]]></category> <category><![CDATA[nottingham]]></category> <category><![CDATA[plagiarism]]></category> <category><![CDATA[political]]></category> <category><![CDATA[radicalism]]></category> <category><![CDATA[science]]></category> <category><![CDATA[terrorism]]></category> <category><![CDATA[uk]]></category> <category><![CDATA[university]]></category><guid isPermaLink="false">http://polsci.wordpress.com/2008/07/29/student-of-radical-islam-must-not-study-al-qaeda-documents/</guid> <description><![CDATA[Weird, sad but apparently true: at Nottingham University, a PhD student who works on islamic terrorism and an administrator were arrested (though released without charges) because they were in possession of an al-Qaeda manual downloaded from the internet. The twist: the manual was part of an MA dissertation and had been re-submitted as part of [...]]]></description> <content:encoded><![CDATA[<p>Weird, sad but apparently true: at Nottingham University, a PhD student who works on islamic terrorism and an administrator were arrested (though released without charges) because they were in possession of an al-Qaeda manual downloaded from the internet. The twist: the manual was part of an MA dissertation and had been re-submitted as part of a PhD application. Now this is clandestine. <a href="http://www.timeshighereducation.co.uk/story.asp?sectioncode=26&amp;storycode=402844" target="_blank">THE</a> has the full story, and boing boing has lots of <a href="http://www.timeshighereducation.co.uk/story.asp?sectioncode=26&amp;storycode=402844" target="_blank">comments</a> on it. All of the sudden, the whole point of urging students to provide proper references and go back to the sources seems rather moot.</p><p>Technorati-Tags: <a class="performancingtags" href="http://technorati.com/tag/nottingham" rel="tag">nottingham</a>, <a class="performancingtags" href="http://technorati.com/tag/university" rel="tag">university</a>, <a class="performancingtags" href="http://technorati.com/tag/terrorism" rel="tag">terrorism</a>, <a class="performancingtags" href="http://technorati.com/tag/radicalism" rel="tag">radicalism</a>, <a class="performancingtags" href="http://technorati.com/tag/islam" rel="tag">islam</a>, <a class="performancingtags" href="http://technorati.com/tag/al-qaeda" rel="tag">al-qaeda</a>, <a class="performancingtags" href="http://technorati.com/tag/plagiarism" rel="tag">plagiarism</a>, <a class="performancingtags" href="http://technorati.com/tag/uk" rel="tag">uk</a>, <a class="performancingtags" href="http://technorati.com/tag/political" rel="tag">political</a>, <a class="performancingtags" href="http://technorati.com/tag/science" rel="tag">science</a>, <a class="performancingtags" href="http://technorati.com/tag/political science" rel="tag">political science</a></p><div class="su-linkbox" id="post-54-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/student-of-radical-islam-must-not-study-al-qaeda-documents/&quot;&gt;Student of radical Islam must not study al-Qaeda documents&lt;/a&gt;" onclick="javascript:this.select()" readonly="readonly" style="width: 100%;" /></div></div>]]></content:encoded> <wfw:commentRss>http://www.kai-arzheimer.com/blog/student-of-radical-islam-must-not-study-al-qaeda-documents/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 1145/1250 objects using disk: basic

Served from: www.kai-arzheimer.com @ 2012-02-08 16:31:09 -->
