-
Notifications
You must be signed in to change notification settings - Fork 0
/
GITC_Project.py
409 lines (327 loc) · 17.7 KB
/
GITC_Project.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
#importing libraries
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.linear_model import LinearRegression
from math import isnan
df = pd.read_csv('suicide.csv')
df.country.nunique()
df.year.sort_values().unique()
df.age.unique()
#creating lists for every group for loops
gender_list = ['female', 'male']
ageGroup_list = ['5-14 years', '15-24 years', '25-34 years', '35-54 years',
'55-74 years', '75+ years']
#creating new dataframe grouped by country
df_countryGroup = df.groupby(['country']).sum()
#creating new dataframes for each country then addինգ to dictionary every data frame
Countries_df_dic ={"Armenia": df[df.country == 'Armenia'],
"Turkey":df[df.country == 'Turkey'],
"Azerbaijan":df[df.country == 'Azerbaijan'],
"Georgia":df[df.country == 'Georgia'],
"Iran":df[df.country == 'Iran (Islamic Rep of)'],
"Germany":df[df.country == 'Germany'],
"Italy": df[df.country == 'Italy'],
"Japan": df[df.country == 'Japan'],
"Russia": df[df.country =='Russian Federation'],
"USA":df[df.country == 'United States of America']
}
#creating new dataframe grouped by year
df_yearGroup = df.groupby(['year']).sum()
df_yearGroup['YEAR'] = df_yearGroup.index
#creating x independent argument (years) and dependent y argument (suicide cases)
x = df_yearGroup.iloc[:, 2:]
y = df_yearGroup.iloc[:, 0]
#create scatter with x and y and show it
plt.scatter(x,y)
plt.show()
#createing regressor for predictions
regressor = LinearRegression()
regressor.fit(x, y)
plt.scatter(x, y, color ='red')
plt.plot(x, regressor.predict(x), color= 'blue')
plt.title('World Suicide statistics')
plt.xlabel('Years')
plt.ylabel('Suicides numbers')
plt.show()
#predit for any year
y_pre = regressor.predict([[2025]])
#create empty dataframes to add countries with suicide statistics
statistics_withCoefficent = pd.DataFrame(columns=['country', 'suicide_coefficient'])
statistics_withCases = pd.DataFrame(columns = ['country', 'suicide_cases', 'year', 'population'])
def suicide_coefficient_counter(year, m_country_df):
'''
Ստանալով ցանկալի տարին և տալով երկրի dataframe-ը կստանաք ինքնասպանությունների
k գործակից (returns suicide_coefficient)
'''
total_suicides= m_country_df[m_country_df.year == year].groupby(['age']).sum()['suicides_no'].sum()
population = m_country_df[m_country_df.year == year].groupby(['age']).sum()['population'].sum()
suicide_coefficient = total_suicides/population
return suicide_coefficient
def suicide_cases_in_population(year, m_country_df):
'''
Ստանալով տարին, երկրի dataframe-ը՝ վերադարձնում է dataframe երկրի բոլոր
յունիք տարիներով ինքնասպանության դեպքերի քանակները և այդ երկրում այդ տարին
ամբողջ բնակչության քանակը
'''
total_suicides= m_country_df[m_country_df.year == year].groupby(['age']).sum()['suicides_no'].sum()
population = m_country_df[m_country_df.year == year].groupby(['age']).sum()['population'].sum()
return [total_suicides, population]
def predict_and_createplot_for_country(m_counrty_df,gender_list, ageGroup_list, year):
'''
Ստանալով երկիրը և տարին, կազմում է տվյալ երկրի բոլոր թվականների ստատիստիկան
(պլոտերով), անում հնարավոր ինքնասպանության դեպքերի predict նշված year
պարամետրի համար։ Վերադարձնում է նաև ռեգրեսիայի հաշվման բանաձև։
'''
country_name = m_counrty_df['country'].iloc[0]
missing_val_count_by_column = (m_counrty_df.isnull().sum())
#print(missing_val_count_by_column[missing_val_count_by_column > 0])
m_counrty_df = m_counrty_df.dropna(axis = 0) # the lines has null values are deleted
m_counrty_df.head()
x = np.array(m_counrty_df.loc[:,'year']*1.0).reshape(-1,1)
y = np.array(m_counrty_df.loc[:,'suicides_no'],dtype = np.float32).reshape(-1,1)
#Scatter Plot
plt.figure(figsize = [10,10])
plt.scatter(x=x,y=y)
plt.xlabel('Year')
plt.ylabel('Suicides number')
plt.show()
reg = LinearRegression()
predict_space = np.linspace(min(x), max(x)).reshape(-1,1)
predicition_forThisCountry = 0;
for sex in gender_list:
for age_group in ageGroup_list:
df_withOneGender = m_counrty_df[m_counrty_df['sex'] == sex]
data_sex = df_withOneGender[df_withOneGender['age'] == age_group]
x_sex = np.array(data_sex.loc[:,'year']).reshape(-1,1)
y_sex = np.array(data_sex.loc[:,'suicides_no']).reshape(-1,1)
reg.fit(x_sex,y_sex)
predicted = reg.predict(predict_space)
print(country_name,"\t| ",sex,"\t| ", age_group, '\t| R^2 Score: ', reg.score(x_sex,y_sex))
plt.plot(predict_space, predicted, color = 'black', linewidth = 2)
plt.scatter(x_sex,y_sex)
plt.title(country_name+" - " + sex + " " + age_group)
plt.xlabel('Year')
plt.ylabel('Suicides number')
plt.show()
predicition_forThisCountry += reg.predict([[year]])
print(country_name +f"---Suicides in {year} will be", predicition_forThisCountry)
print("\033[1;31;43m", f"y = {reg.intercept_} + {reg.coef_}X","\033[1;37;0m")
for country_name in Countries_df_dic:
'''
Ցիկլում կանչվում է կանխատեսման ֆունկցիան ամեն երկրի համար և ստատիստիկա
հաշվող ֆունկցիաներով հաշվում և ավելացնում երկրի ստատիստիկ տվյալները
համապատասխանաբար statistics_withCoefficent-ում և statistics_withCases-ում
'''
predict_year = 1991;
country_df = Countries_df_dic[country_name]#get country dataframe of dic with key
predict_and_createplot_for_country(country_df, gender_list, ageGroup_list, predict_year)
for every_year in country_df.year.unique():
#using definition for counting k coefficient of suicide per year
k_suicide = suicide_coefficient_counter(every_year, country_df)
statistics_withCoefficent = statistics_withCoefficent.append({'country': country_name,
'suicide_coefficient':k_suicide,
'year':every_year},
ignore_index=True)
#using definition for counting suicide cases in custom population
suicide_cases_and_population = suicide_cases_in_population(every_year, country_df)
statistics_withCases = statistics_withCases.append({'country': country_name,
'population': suicide_cases_and_population[1],
'suicide_cases': suicide_cases_and_population[0],
'year':every_year},
ignore_index=True)
'''' PLOT CREATING FUNCTIONS AND FUNCTIONS CALLS '''
def readable_numbers_for_plot_titles(number):
'''
This function is used to add points to population numbers to get much more
readable ones.
'''
if isinstance(number, int):
number = str(number)
lenght = len(number)
number = number[::-1]#reverse string
final_string = ''
for i in range(0,lenght,3):
part = number[i:i+3] # get every hetrick
if (i+3 < lenght):
final_string +=part+"." #add every hetrick with '.'
else:
final_string += part #if it is last hetrick add it without '.'
return final_string[::-1]#reverse string and return as result
#Creating suicide with coefficient statistics plot
def create_suicide_statisticsWithCoefficient_plot_for_year(year, statisticsCoeff):
'''
Ստանում է տարին, ստանում է գործակիցներով ստատիստիկայի dataframe
(օր․ statistics_withCoefficent) ու վերադարձնում է նշված տարվա համար
սպանվածների թվի գործակից ամեն երկրի համար (գրաֆիկորեն պատկերում պլոտի
միջոցով)
'''
stat = statisticsCoeff[statisticsCoeff.year ==year]
plt.rcdefaults()
fig, ax = plt.subplots()
countries = stat.iloc[:,0]
y_pos = np.arange(len(countries))
performance = stat.iloc[:,1]
ax.barh(y_pos, performance, align='center')
ax.set_yticks(y_pos)
ax.set_yticklabels(countries)
ax.invert_yaxis() # labels read top-to-bottom
ax.set_xlabel('Suicide coefficient')
ax.set_title('Suicide coefficient for countries in'+" "+str(year))
plt.show()
#Creating suicide with cases statistics plot
def create_suicide_statisticsWithCases_plot_for_year(year, inpopulation, statisticsCases):
'''
Ստանում է տարին, ստանում է քանակ թե որքան բնակչության մեջ ստատիստիկա ցույց
տա, ստատիստիկաների dataframe-ը (օր․ statistics_withCases) ու վերադարձնում է
նշած բնակչության հաշվով սպանությունների թիվը երկրներում ( պլոտի տեսքով)
'''
stat = statisticsCases[statisticsCases.year == year]
for index, row in stat.iterrows():
stat.at[index,'suicide_cases'] = stat.suicide_cases[index]/(stat.population[index]/inpopulation)
stat.at[index,'population'] = inpopulation
plt.rcdefaults()
fig, ax = plt.subplots()
countries = stat.iloc[:,0]
y_pos = np.arange(len(countries))
performance = stat.iloc[:,1]
ax.barh(y_pos, performance, align='center')
ax.set_yticks(y_pos)
ax.set_yticklabels(countries)
ax.invert_yaxis() # labels read top-to-bottom
ax.set_xlabel('Suicide cases')
ax.set_title("In "
+ readable_numbers_for_plot_titles(inpopulation)
+ ' people Suicide cases for countries in'
+ " " + str(year))
i = 0
for suicide_cases in stat.suicide_cases:
ax.text(suicide_cases,
i,
str(np.around(suicide_cases, 2) if isnan(suicide_cases) or( suicide_cases<1 )else int(suicide_cases)),
fontsize = 15,
verticalalignment = "center")
i = i+1
plt.show()
def show_suicide_statistics_inrange_forcountry(startYear, endYear, inpopulation, statisticsCases, country_name):
'''
Ստանում է տարիների միջակայք, հաշվարկի համար ցանկալի բնակչության քանակի մեջ
թիվը, ստատիստիկաների daraframe (օրինակ․ statistics_withCases,), երկրի անուն
և մեզ վերդարձնում է տարիների ընթացքում ինքնասպանությունների փոփոխվող
պրոգրեսիան տվյալ երկրի համար։
'''
stat = statisticsCases[statisticsCases.country == country_name]
stat = stat[(stat.year >= startYear) & (stat.year <=endYear)]
for index,row in stat.iterrows():
stat.at[index,'suicide_cases'] = stat.suicide_cases[index]/(stat.population[index]/inpopulation)
stat.at[index, 'population'] = inpopulation
plt.rcdefaults()
#use this one to show results with line graphics
fig, ax = plt.subplots()
xlabel = stat.iloc[:,2]
ylabel = stat.iloc[:,1]
ax.plot(xlabel,ylabel)
ax.set(xlabel='Years', ylabel='Suicides',
title="In "
+readable_numbers_for_plot_titles(inpopulation)
+' people Suicide cases for ' +country_name+' from '
+ str(startYear)+' to ' + str(endYear))
ax.grid()
i=startYear
for suicide_cases in stat.suicide_cases:
ax.text(i,
suicide_cases,
str(np.around(suicide_cases, 2) if isnan(suicide_cases)
or( suicide_cases<1 )else int(suicide_cases)),
fontsize = 10,
verticalalignment = "bottom",
)
i = i+1
plt.show()
#use this one to show results with histographs
'''
years = stat.iloc[:,2]
y_pos = np.arange(len(years))
performance = stat.iloc[:,1]
ax.barh(y_pos, performance, align='center')
ax.set_yticks(y_pos)
ax.set_yticklabels(years)
ax.invert_yaxis() # labels read top-to-bottom
ax.set_xlabel('Suicide cases')
ax.set_title("In "+str(inpopulation)+' people Suicide cases for ' +country_name+' from '+ str(startYear)+' to ' + str(endYear))
i = 0
for suicide_cases in stat.suicide_cases:
ax.text(suicide_cases,
i,
str(np.around(suicide_cases, 2) if isnan(suicide_cases) or( suicide_cases<1 )else int(suicide_cases)),
fontsize = 15,
verticalalignment = "center")
i = i+1
plt.show()
'''
def show_suicide_statistics_inrange_forcountries(startYear, endYear, inpopulation, statisticsCases, country_name_list):
'''
Ստանում է տարիների միջակայք, հաշվարկի համար ցանկալի բնակչության քանակի մեջ
թիվը, ստատիստիկաների daraframe (օրինակ․ statistics_withCases,), երկրների անունների ցանկ
և մեզ վերդարձնում է տարիների ընթացքում ինքնասպանությունների փոփոխվող
պրոգրեսիան տվյալ երկրների համար, առկա է նաև լեգենդա՝ հասկանալու համար գրաֆիկը։
'''
stat = statisticsCases[(statisticsCases.year >= startYear) & (statisticsCases.year <=endYear)]
plt.rcdefaults()
fig, ax = plt.subplots(1)
ax.set(xlabel='Years', ylabel='Suicides',
title="In "
+readable_numbers_for_plot_titles(inpopulation)
+' people Suicide cases ' + 'from '
+ str(startYear)+' to ' + str(endYear))
ax.grid()
for every_country in country_name_list:
localed_stat = stat[stat.country == every_country]
for index,row in localed_stat.iterrows():
localed_stat.at[index,'suicide_cases'] = localed_stat.suicide_cases[index]/(localed_stat.population[index]/inpopulation)
localed_stat.at[index, 'population'] = inpopulation
#use this one to show results with line graphics
xlabel = localed_stat.iloc[:,2]
ylabel = localed_stat.iloc[:,1]
ax.plot(xlabel,ylabel)
ax.legend(labels = country_name_list,
title="Countries",
loc="center left",
bbox_to_anchor=(1, 0, 0.5, 1))
plt.show()
def show_pie_for_country_suicdecases(year, inpopulation, statisticsCases):
'''
Ստանում է տարին, ստանում է քանակ թե որքան բնակչության մեջ ստատիստիկա ցույց
տա, ստատիստիկաների dataframe-ը (օր․ statistics_withCases) ու վերադարձնում է
նշած բնակչության հաշվով սպանությունների թիվը երկրներում (դիագրամի տեսքով)։
'''
stat = statisticsCases[statisticsCases.year == year]
countries_cases = {}
for index, row in stat.iterrows():
stat.at[index,'suicide_cases'] = stat.suicide_cases[index]/(stat.population[index]/inpopulation)
stat.at[index,'population'] = inpopulation
#countries_cases.append(f'{stat.at[index,"suicide_cases"]} {stat.country[index]}')
countries_cases[stat.at[index,"suicide_cases"]] = stat.country[index]
fig, ax = plt.subplots(figsize=(6, 3), subplot_kw=dict(aspect="equal"))
data = [float(key) for key in countries_cases]
ingredients = [countries_cases[key] for key in countries_cases]
def func(pct, allvals):
absolute = int(pct/100.*np.sum(allvals))
return "{:d}".format(absolute)
wedges, texts, autotexts = ax.pie(data, autopct=lambda pct: func(pct, data),
textprops=dict(color="white"))
print(wedges)
ax.legend(wedges, ingredients,
title="Countries",
loc="center left",
bbox_to_anchor=(1, 0, 0.5, 1))
plt.setp(autotexts, size=8, weight="bold")
ax.set_title( f"In {readable_numbers_for_plot_titles(inpopulation)} suicide cases in {year}")
plt.show()
#show statistics with plots and graphics
create_suicide_statisticsWithCoefficient_plot_for_year(2012, statistics_withCoefficent)
create_suicide_statisticsWithCases_plot_for_year(2015, 1000000, statistics_withCases)
show_suicide_statistics_inrange_forcountries(2000,2015,1000000,statistics_withCases, ['Armenia', 'Georgia', 'Russia', 'USA', 'Italy'])
show_pie_for_country_suicdecases(2015, 1000000, statistics_withCases)
#predict example (just change country key name of dictionary to predict and create plots)
predict_and_createplot_for_country(Countries_df_dic['USA'], gender_list, ageGroup_list, 2070)