-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTerroristAnalysis.py
483 lines (263 loc) · 8.92 KB
/
TerroristAnalysis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
#!/usr/bin/env python
# coding: utf-8
# 1. Loading Data:
# In[1]:
#importing required libraries
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import warnings
warnings.filterwarnings("ignore")
get_ipython().run_line_magic('matplotlib', 'inline')
# In[3]:
df = pd.read_csv('Downloads/Global Terrorism - START data/globalterrorismdb_0718dist.csv',encoding='ISO-8859-1')
df.head()
# 2. Familiarizing with Data:
#
# In[4]:
df.shape
# In[5]:
df.columns
# In[6]:
df.rename(columns={'iyear':'Year','imonth':'Month','iday':'Day','country_txt':'Country','provstate':'state',
'region_txt':'Region','attacktype1_txt':'AttackType','target1':'Target','nkill':'Killed',
'nwound':'Wounded','summary':'Summary','gname':'Group','targtype1_txt':'Target_type',
'weaptype1_txt':'Weapon_type','motive':'Motive'},inplace=True)
# In[8]:
# Important data for further processing
df=df[['Year','Month','Day','Country','state','Region','city','latitude','longitude','AttackType','Killed',
'Wounded','Target','Summary','Group','Target_type','Weapon_type','Motive']]
# In[9]:
df.head()
# In[10]:
#checking for null value
df.isna().sum()
# In[12]:
df.info()
# In[13]:
df.describe()
# In[14]:
#unique value in dataset
df.nunique()
# In[15]:
#checking for outlier
col=[ "Year","Month","Day","latitude","longitude", "Killed" , "Wounded" ]
new_data=df
for i in col:
new_data=new_data.sort_values(by=[i])
q1=new_data[i].quantile(0.25)
q3=new_data[i].quantile(0.75)
iqr=q3-q1
lwo=q1-1.5*iqr
upo=q3+1.5*iqr
new_data=new_data[(new_data[i]<upo) & (new_data[i]>lwo)]
new_data=new_data.sort_index().reset_index(drop=True)
if(new_data.size<df.size):
print("There exist outlier in dataset.")
print("Shape of dataset before removing Outlier : ",new_data.shape)
print("Shape of dataset after removing Outlier : ",df.shape)
# In[16]:
df['Year'].value_counts(dropna = False).sort_index()
# 3. Visualizing the data:
# In[17]:
#histogram for Visualizing
df.hist(bins = 50,figsize = (15,11));
# In[18]:
#correlation among dataset
df.corr().abs()
# In[19]:
#Correlation heatmap
plt.figure(figsize=(7,5))
sns.heatmap(df.corr(), annot=True)
plt.show()
# Terrorist Activities Each Year
#
# In[20]:
x_year = df['Year'].unique()
y_count_years = df['Year'].value_counts(dropna = False).sort_index()
plt.figure(figsize = (18,10))
sns.barplot(x = x_year, y = y_count_years, palette = 'rocket')
plt.xticks(rotation = 50)
plt.xlabel('Attack Year')
plt.ylabel('Number of Attacks Each Year')
plt.title('Attack In Years')
plt.show()
# In[21]:
plt.subplots(figsize=(20,10))
sns.countplot('Year',data=df,palette='RdYlGn_r',edgecolor=sns.color_palette("YlOrBr", 10))
plt.xticks(rotation=50)
plt.title('Number Of Terrorist Activities Each Year')
plt.show()
# Terrorist Activities By Region In Each Year
#
# In[23]:
pd.crosstab(df.Year, df.Region).plot(kind='area',figsize=(20,10))
plt.title('Terrorist Activities By Region In Each Year')
plt.ylabel('Number of Attacks')
plt.show()
# In[24]:
df['Wounded'] = df['Wounded'].fillna(0).astype(int)
df['Killed'] = df['Killed'].fillna(0).astype(int)
df['Casualities'] = df['Killed'] + df['Wounded']
# In[25]:
# Top 50 worst terrorist attacks
df1 = df.sort_values(by='Casualities',ascending=False).reset_index()
df1.head()
# In[26]:
df1.shape
# In[27]:
heat=df1.pivot_table(index='Country',columns='Year',values='Casualities')
heat.fillna(0,inplace=True)
heat.head()
# In[28]:
heat.shape
# Top Countries Affected By Terrorist Attacks
#
# In[29]:
plt.subplots(figsize=(20,10))
sns.barplot(df['Country'].value_counts()[:20].index,df['Country'].value_counts()[:20].values,palette='Blues_d')
plt.title('Top Countries Affected')
plt.xlabel('Countries')
plt.ylabel('Count')
plt.xticks(rotation= 90)
plt.show()
# 4. Data Analysis:
# Terrorist Attacks of a Particular year and their Locations
#
# In[30]:
filterYear = df[df['Year'] == 2001].reset_index(drop=True)
filterYear
# In[32]:
filterYear.info()
# In[33]:
reqFilterData = filterYear.loc[:,'city':'longitude'] # get the required fields
reqFilterData = reqFilterData.dropna() # drop NaN values in latitude and longitude
reqFilterDataList = reqFilterData.values.tolist()
reqFilterDataList[:20]
# Terrorist's Origanizations Operations In Each Country
#
# In[34]:
df.Group.value_counts()
# In[35]:
test = df[df.Group.isin(['Shining Path (SL)','Taliban','Islamic State of Iraq and the Levant (ISIL)'])]
# In[36]:
test.Country.unique()
# In[37]:
df_df_group = df.dropna(subset=['latitude','longitude']).reset_index(drop=True)
df_df_group.head()
# In[38]:
df_df_group = df_df_group.drop_duplicates(subset=['Country','Group']).reset_index(drop=True)
df_df_group
# In[39]:
terrorist = df.Group.value_counts()[1:8].index.tolist()
df_df_group = df_df_group.loc[df_df_group.Group.isin(terrorist)]
print(df_df_group.Group.unique())
terrorist
# In[40]:
df.head()
# In[41]:
# Total Number of people killed in terror attack
killData = df.loc[:,'Killed']
print('Number of people killed by terror attack:', int(sum(killData.dropna())))# drop the NaN values
# In[42]:
# Let's look at what types of attacks these deaths were made of.
attackData = df.loc[:,'AttackType']
# attackData
typeKillData = pd.concat([attackData, killData], axis=1)
# In[43]:
typeKillData.head()
# In[44]:
typeKillFormatData = typeKillData.pivot_table(columns='AttackType', values='Killed', aggfunc='sum')
typeKillFormatData
# In[45]:
typeKillFormatData.info()
# In[46]:
# Number of Killed in Terrorist Attacks by Countries
countryData = df.loc[:,'Country']
# countyData
countryKillData = pd.concat([countryData, killData], axis=1)
countryKillData.info()
# In[47]:
countryKillFormatData = countryKillData.pivot_table(columns='Country', values='Killed', aggfunc='sum')
countryKillFormatData
# In[48]:
fig_size = plt.rcParams["figure.figsize"]
fig_size[0]=25
fig_size[1]=25
plt.rcParams["figure.figsize"] = fig_size
# In[49]:
labels = countryKillFormatData.columns.tolist()
labels = labels[:50] #50 bar provides nice view
index = np.arange(len(labels))
transpoze = countryKillFormatData.T
values = transpoze.values.tolist()
values = values[:50]
values = [int(i[0]) for i in values] # convert float to int
colors = ['red', 'green', 'blue', 'purple', 'yellow', 'brown', 'black', 'gray', 'magenta', 'orange'] # color list for bar chart bar color
fig, ax = plt.subplots(1, 1)
ax.yaxis.grid(True)
fig_size = plt.rcParams["figure.figsize"]
fig_size[0]=25
fig_size[1]=25
plt.rcParams["figure.figsize"] = fig_size
plt.bar(index, values, color = colors, width = 0.9)
plt.ylabel('Killed People', fontsize=30)
plt.xlabel('Countries', fontsize = 30)
plt.xticks(index, labels, fontsize=20, rotation=90)
plt.title('Number of People Killed By Countries', fontsize = 30)
plt.show()
# In[50]:
labels = countryKillFormatData.columns.tolist()
labels = labels[50:101]
index = np.arange(len(labels))
transpoze = countryKillFormatData.T
values = transpoze.values.tolist()
values = values[50:101]
values = [int(i[0]) for i in values]
colors = ['red', 'green', 'blue', 'purple', 'yellow', 'brown', 'black', 'gray', 'magenta', 'orange']
fig, ax = plt.subplots(1, 1)
ax.yaxis.grid(True)
fig_size = plt.rcParams["figure.figsize"]
fig_size[0]=20
fig_size[1]=20
plt.rcParams["figure.figsize"] = fig_size
plt.bar(index, values, color = colors, width = 0.9)
plt.ylabel('Killed People', fontsize=20)
plt.xlabel('Countries', fontsize = 20)
plt.xticks(index, labels, fontsize=20, rotation=90)
plt.title('Number Of People Killed By Countries', fontsize = 30)
plt.show()
# In[51]:
labels = countryKillFormatData.columns.tolist()
labels = labels[152:206]
index = np.arange(len(labels))
transpoze = countryKillFormatData.T
values = transpoze.values.tolist()
values = values[152:206]
values = [int(i[0]) for i in values]
colors = ['red', 'green', 'blue', 'purple', 'yellow', 'brown', 'black', 'gray', 'magenta', 'orange']
fig, ax = plt.subplots(1, 1)
ax.yaxis.grid(True)
fig_size = plt.rcParams["figure.figsize"]
fig_size[0]=25
fig_size[1]=25
plt.rcParams["figure.figsize"] = fig_size
plt.bar(index, values, color = colors, width = 0.9)
plt.ylabel('Killed People', fontsize=20)
plt.xlabel('Countries', fontsize = 20)
plt.xticks(index, labels, fontsize=20, rotation=90)
plt.title('Number Of people Killed By Countries', fontsize = 20)
plt.show()
# In[52]:
df['Group'].value_counts().drop('Unknown').head(20).plot(kind='pie',autopct='%1.1f%%',figsize=(40,40),startangle=180,fontsize='50')
plt.title("Groupname attacks in total",fontsize=70)
plt.show()
# In[53]:
df['AttackType'].value_counts().plot(kind='pie',figsize=(20,20),autopct='%1.1f%%',fontsize='30')
plt.title("Attacktype attacks in total",fontsize=40)
plt.show()
# In[54]:
df = df[['Country','Group','Killed']].groupby(['Group','Country']).sum().sort_values('Killed',ascending=False).drop('Unknown').head(20)
df
# In[ ]: