-
Notifications
You must be signed in to change notification settings - Fork 0
/
Code.py
393 lines (329 loc) · 9.94 KB
/
Code.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
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from sklearn.cluster import DBSCAN
from sklearn.preprocessing import StandardScaler
from sklearn.cluster import KMeans
import scipy.cluster.hierarchy
from scipy.cluster.hierarchy import dendrogram, linkage
from sklearn.mixture import GaussianMixture as GMM
from sklearn.decomposition import PCA
from matplotlib.collections import LineCollection
#------------------------------------------------------------------------------
# Données test
G20 = pd.read_csv('g2-2-20.txt', sep=' ', engine='python')
G100 = pd.read_csv('g2-2-100.txt', sep=' ', engine='python')
jain = pd.read_csv('jain.txt', sep='\t')
AG = pd.read_csv('Aggregation.txt', sep='\t')
PA = pd.read_csv('pathbased.txt', sep='\t')
#------------------------------------------------------------------------------
# Données réelles
# On note D le tableau initial, non modifié. Le garder intact permet de se référer
# aux vraies valeurs lors du processur de réflexion.
# On note D1 le tableau 'utile', corrigé et normalisé. C'est celui-ci qui sera
# employé dans la première partie de la classification.
# On note D3 le tableau initial avec modifications de valeurs aberrantes. Ce
# tableau permet de suivre le raisonnement effectué avec après réduction du nombre
# de pays.
# Par ailleurs, on note :
# Dc le DataFrame de corrélation des variables
# Dd le DataFrame descriptif des données de D
# Importation du jeu de données
D = pd.read_csv('data.csv')
# Analyse initiale
Dc = D.corr()
Dd = D.describe()
# Création de D1 et modification des valeurs aberrantes
D1 = D.copy()
D1.iloc[7,9] = 54907
D1.iloc[158,9] = 42300
D1.iloc[159,9] = 65118
D1.iloc[12,7] = 72
D1.iloc[54,8] = 1.92
D1.iloc[112,8] = 7
D1.iloc[75,9] = 34483
D1.iloc[114,9] = 81697
# Création de D3 pour la partie finale, qui contient encore les valeurs réelles
# et les noms de pays
D3 = D1.copy()
# Suppression des noms de pays pour permettre la réduction des données
del(D1['country'])
# Réduction des données
D1 = StandardScaler().fit_transform(D1)
def dbscan(X,e,m):
db = DBSCAN(eps=e,min_samples=m)
db.fit(X)
Y = db.fit_predict(X)
C = []
B = []
for k in range (max(Y)+1) :
C.append([])
for i in range(len(Y)) :
if Y[i] != -1 :
C[Y[i]].append(D.iloc[i,0])
if Y[i] == -1 :
B.append(D.iloc[i,0])
# plt.scatter(X[:,0],X[:,4],c=Y,s=10)
# plt.title('DBSCAN')
return B
def kmeans(X,K) :
kmeans = KMeans(n_clusters=K, init='k-means++', n_init=100)
kmeans.fit(X)
Y = kmeans.predict(X)
C = []
for k in range (max(Y)+1) :
C.append([])
for i in range(len(Y)) :
C[Y[i]].append(D.iloc[i,0])
plt.scatter(X[:,0], X[:,1], c=Y, s = 10)
plt.title('K-means')
return C
def cah(X,t) :
Z = linkage(X,method='ward',metric='euclidean')
Y = scipy.cluster.hierarchy.fcluster(Z, t, criterion='distance')
C = []
for k in range (max(Y)) :
C.append([])
for i in range(len(Y)) :
C[Y[i]-1].append(D.iloc[i,0])
plt.scatter(X[:,0], X[:,1], c=Y, s = 10)
plt.title('CAH')
plt.figure(figsize=(20, 10))
dendrogram(Z)
return C
def gauss(X,K) :
gmm = GMM(n_components=K, n_init=10, max_iter=1000)
gmm.fit(X)
Y = gmm.predict(X)
C = []
for k in range (max(Y)+1) :
C.append([])
for i in range(len(Y)) :
C[Y[i]].append(D.iloc[i,0])
plt.scatter(X[:, 0], X[:, 1], c=Y, s=10)
plt.title('Mélange des gaussiennes')
plt.show()
return C
def acp(X,n) :
pca = PCA(n_components=n)
pca.fit(X)
P = pca.transform(X)
# pcs = pca.components_
# display_circles(pcs, 3, pca, [(0,1),(0,2),(1,2)], labels = np.array(D1.columns))
return P
def cah_reduit(t) : #Fonction pour réaliser la CAH a partir d'un nombre de pays limité
D2 = acp(D1.copy(),4)
N = pd.Series.to_list(D['country'])
# On crée un tableau D2 ne comportant plus que les pays intéressants
for k in range(1,168) :
if (N[len(N)-k] in A) == False :
D2 = np.delete(D2,(len(N)-k), axis=0)
D3.drop(D3.index[(len(N)-k)], inplace=True)
Z = linkage(D2,method='ward',metric='euclidean')
Y = scipy.cluster.hierarchy.fcluster(Z, t, criterion='distance')
C = []
for k in range (max(Y)) :
C.append([])
for i in range(len(Y)) :
C[Y[i]-1].append(D3.iloc[i,0])
plt.scatter(D2[:,0], D2[:,1], c=Y, s = 10)
plt.title('CAH')
plt.show()
plt.figure(figsize=(20, 10))
dendrogram(Z)
return C
# -----------------------------------------------------------------------------
# Croisement des données, pour l'ACP finale réduite à 41 pays (même raisonnement
# pour la classification à 27 pays)
X1 = ['Afghanistan',
'Angola',
'Benin',
'Botswana',
'Burkina Faso',
'Burundi',
'Cameroon',
'Central African Republic',
'Chad',
'Comoros',
'Congo Dem. Rep.',
'Congo Rep.',
"Cote d'Ivoire",
'Equatorial Guinea',
'Eritrea',
'Gabon',
'Gambia',
'Ghana',
'Guinea',
'Guinea-Bissau',
'Haiti',
'Iraq',
'Kenya',
'Kiribati',
'Lao',
'Lesotho',
'Liberia',
'Madagascar',
'Malawi',
'Mali',
'Mauritania',
'Micronesia Fed. Sts.',
'Mongolia',
'Mozambique',
'Namibia',
'Niger',
'Nigeria',
'Pakistan',
'Rwanda',
'Senegal',
'Sierra Leone',
'Solomon Islands',
'South Africa',
'Sudan',
'Tajikistan',
'Tanzania',
'Timor-Leste',
'Togo',
'Uganda',
'Vanuatu',
'Venezuela',
'Yemen',
'Zambia']
X2 = ['Afghanistan',
'Angola',
'Benin',
'Botswana',
'Burkina Faso',
'Burundi',
'Cameroon',
'Central African Republic',
'Chad',
'Comoros',
'Congo Dem. Rep.',
'Congo Rep.',
"Cote d'Ivoire",
'Equatorial Guinea',
'Eritrea',
'Gabon',
'Gambia',
'Ghana',
'Guinea',
'Guinea-Bissau',
'Haiti',
'Iraq',
'Kenya',
'Kiribati',
'Lao',
'Lesotho',
'Liberia',
'Madagascar',
'Malawi',
'Mali',
'Mauritania',
'Mozambique',
'Namibia',
'Niger',
'Nigeria',
'Pakistan',
'Rwanda',
'Senegal',
'Sierra Leone',
'Solomon Islands',
'South Africa',
'Sudan',
'Tanzania',
'Timor-Leste',
'Togo',
'Uganda',
'Yemen',
'Zambia']
X3 = ['Afghanistan',
'Angola',
'Benin',
'Botswana',
'Burkina Faso',
'Burundi',
'Cameroon',
'Central African Republic',
'Chad',
'Comoros',
'Congo Dem. Rep.',
'Congo Rep.',
"Cote d'Ivoire",
'Equatorial Guinea',
'Gambia',
'Ghana',
'Guinea',
'Guinea-Bissau',
'Haiti',
'Iraq',
'Kenya',
'Kiribati',
'Lao',
'Lesotho',
'Liberia',
'Madagascar',
'Malawi',
'Mali',
'Mauritania',
'Micronesia Fed. Sts.',
'Mozambique',
'Namibia',
'Niger',
'Rwanda',
'Senegal',
'Sierra Leone',
'Solomon Islands',
'South Africa',
'Tajikistan',
'Tanzania',
'Togo',
'Uganda',
'Zambia']
A = []
for x in X1 :
if x in X2 and x in X3 :
A.append(x)
#------------------------------------------------------------------------------
# Fonction pour afficher le cercle de corrélation des variables dans les plans de l'ACP
# (trouvée sur OpenClassrooms.com)
def display_circles(pcs, n_comp, pca, axis_ranks, labels=None, label_rotation=0, lims=None):
for d1, d2 in axis_ranks: # On affiche les 3 premiers plans factoriels, donc les 6 premières composantes
if d2 < n_comp:
# initialisation de la figure
fig, ax = plt.subplots(figsize=(7,7))
# détermination des limites du graphique
if lims is not None :
xmin, xmax, ymin, ymax = lims
elif pcs.shape[1] < 30 :
xmin, xmax, ymin, ymax = -1, 1, -1, 1
else :
xmin, xmax, ymin, ymax = min(pcs[d1,:]), max(pcs[d1,:]), min(pcs[d2,:]), max(pcs[d2,:])
# affichage des flèches
# s'il y a plus de 30 flèches, on n'affiche pas le triangle à leur extrémité
if pcs.shape[1] < 30 :
plt.quiver(np.zeros(pcs.shape[1]), np.zeros(pcs.shape[1]),
pcs[d1,:], pcs[d2,:],
angles='xy', scale_units='xy', scale=1, color="grey")
# (voir la doc : https://matplotlib.org/api/_as_gen/matplotlib.pyplot.quiver.html)
else:
lines = [[[0,0],[x,y]] for x,y in pcs[[d1,d2]].T]
ax.add_collection(LineCollection(lines, axes=ax, alpha=.1, color='black'))
# affichage des noms des variables
if labels is not None:
for i,(x, y) in enumerate(pcs[[d1,d2]].T):
if x >= xmin and x <= xmax and y >= ymin and y <= ymax :
plt.text(x, y, labels[i], fontsize='14', ha='center', va='center', rotation=label_rotation, color="blue", alpha=0.5)
# affichage du cercle
circle = plt.Circle((0,0), 1, facecolor='none', edgecolor='b')
plt.gca().add_artist(circle)
# définition des limites du graphique
plt.xlim(xmin, xmax)
plt.ylim(ymin, ymax)
# affichage des lignes horizontales et verticales
plt.plot([-1, 1], [0, 0], color='grey', ls='--')
plt.plot([0, 0], [-1, 1], color='grey', ls='--')
# nom des axes, avec le pourcentage d'inertie expliqué
plt.xlabel('F{} ({}%)'.format(d1+1, round(100*pca.explained_variance_ratio_[d1],1)))
plt.ylabel('F{} ({}%)'.format(d2+1, round(100*pca.explained_variance_ratio_[d2],1)))
plt.title("Cercle des corrélations (F{} et F{})".format(d1+1, d2+1))
plt.show(block=False)