forked from antoine-palazz/Projet-Python-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheda.py
387 lines (281 loc) · 14.1 KB
/
eda.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
import pandas as pd
import seaborn as sns
from sklearn.ensemble import IsolationForest
from sklearn.preprocessing import LabelEncoder
from sklearn.impute import SimpleImputer
import matplotlib.pyplot as plt
from sklearn.preprocessing import StandardScaler
import plotly.graph_objects as go
import plotly.express as px
import plotly.offline as pyo #permet d'afficher les graphes interactives direct dans le notebook
def correlation(df):
corr = df.corr()
corr.style.background_gradient(cmap='coolwarm')
return corr
def linreg_marg_dist(df,x,y):
sns.set_theme(style="darkgrid")
sns.jointplot(x=x, y=y, data=df,
kind="reg", truncate=False,
color="m", height=7,
scatter_kws={'alpha': 0.3})
def one_hot_encode(data, columns_to_encode):
"""
Cette fonction encode des variables spécifiques.
args :
=> df (pd.Dataframe) : base de données
=> columns_to_encode (list) : liste des variables à encoder
return :
=> df(pd.Dataframe) : la base de données initiale avec des colonnes supplémentaires
"""
return pd.get_dummies(data, columns=columns_to_encode, drop_first=True)
def label_encode(data, columns_to_encode):
le = LabelEncoder()
for column in columns_to_encode:
data[column] = le.fit_transform(data[column])
return data
def impute_missing_values(data, strategy='mean'):
imputer = SimpleImputer(strategy=strategy)
imputed_data = imputer.fit_transform(data)
return pd.DataFrame(imputed_data, columns=data.columns)
def remove_outliers(data, contamination=0.01):
model = IsolationForest(contamination=contamination, random_state=42)
model.fit(data)
outliers = model.predict(data)
inliers_mask = outliers == 1
cleaned_data = data[inliers_mask]
return cleaned_data
# Tracer les boites à moustache de plusieurs variables
def boxplot(data, variables):
fig, axes = plt.subplots(nrows=4, ncols=3, figsize=(15, 8))
axes = axes.flatten()
for i in range(len(variables)):
sns.boxplot(x=data[variables[i]], ax=axes[i], color='skyblue')
#axes[i].set_title(variables[i])
# Masquer le subplot vide
if len(axes) > 9:
for i in range(9, len(axes)):
fig.delaxes(axes[i])
plt.tight_layout()
plt.show()
# Détecter des outliers
def Outliers(df, columns):
outliers = pd.DataFrame(columns=['variable','nombre_val_aberrantes'])
for column in columns:
q1 = df[column].quantile(0.25)
q3 = df[column].quantile(0.75)
iqr = q3 - q1
seuil_inf = q1 - 3.5 * iqr
seuil_sup = q3 + 3.5 * iqr
valeurs_aberrantes = df[(df[column] < seuil_inf) | (df[column] > seuil_sup)]
outliers = pd.concat([outliers,pd.DataFrame([{'variable':column,'nombre_val_aberrantes':len(valeurs_aberrantes)}])] )
return outliers
def remplacer_outliers(df,columns):
for column in columns:
q1 = df[column].quantile(0.25)
q3 = df[column].quantile(0.75)
iqr = q3 - q1
if iqr>0:
seuil_inf = q1 - 3.5 * iqr
seuil_sup = q3 + 3.5 * iqr
df.loc[df[column] < seuil_inf, column] = seuil_inf
df.loc[df[column] > seuil_sup, column] = seuil_sup
return (df)
# Standardisation
def standardisation (df, columns):
scaler = StandardScaler()
data_standardized = pd.DataFrame()
data_standardized[columns]= scaler.fit_transform(df[columns])
return data_standardized
def occurrence(df,column):
occurrence = df[column].value_counts()
return occurrence
################################################### GRAPHIQUES /
def create_unique(df):
"""
This function aims to explore the dataframe's composition. It's a usful function to show how many missing values each variable counts.
It is a general function adaptative with any panda dataframe.
args :
=> df (pd.Dataframe) : the input data base
return :
=> df_unique (pd.Dataframe) : a data frame of all the input variables and their composition in term of missing values. \n
'Column_name' 'Data_type' 'Number_of_unique' 'Number_of_missing' 'Unique_values' \n
Var1 --- --- --- ---- ---\n
Var2 --- --- --- --- ---\n
...\n
Varn --- --- --- --- ---\n
"""
df_unique_list = []
for col in df.columns:
num_unique = df[col].nunique()
if num_unique <= 15:
unique_vals = list(df[col].unique())
else:
unique_vals = "More than 15 unique values"
data_type = df[col].dtype
num_missing = df[col].isnull().sum()
percent_missing = num_missing / df.shape[0]
df_unique_list.append({
'Column_name': col,
'Data_type': data_type,
'Number_of_unique': num_unique,
'Number_of_missing': num_missing,
'Percentage_of_missing': percent_missing,
'Unique_values': unique_vals
})
df_unique = pd.DataFrame(df_unique_list)
return df_unique
def clean_na (df) :
"""
This function aims to clean our working dataframe from variable that we considere not useful for our exploration and duplicates.
For instance because of a large number of missing value. Moreover, we convert non numeric variable to encoded.
args :
> df (pandas dataframe) : original datframe
output :
> df_clean (pandas dataframe)
"""
df_unique = create_unique(df)
drop_list = []
for index, row in df_unique.iterrows():
label_encoder = LabelEncoder()
colname = str(row['Column_name'])
# Suppression des colonnes avec plus de 60% des valeurs manquantes
if row['Percentage_of_missing'] > 0.6 :
try:
df.drop(colname, axis=1, inplace=True)
drop_list.append(colname)
except KeyError:
print(f"Column '{colname}' not found in DataFrame.")
elif df[colname].dtype == 'O': # Check if the dtype is 'object' (non-numeric)
colname = str(row['Column_name'])
df[str(colname) + '_encoded'] = label_encoder.fit_transform(df[colname].astype(str))
print ('The list of variables deleted is : ' + str(drop_list))
df = df.drop_duplicates(subset='N°DPE')
return df
def create_energy_plots(dataframe, x_variable, y_variable):
''' fonction permettant de creer plusieurs graphiques pour la description d'une variable'''
sns.set(style="whitegrid")
fig, axes = plt.subplots(2, 2, figsize=(10, 9))
# Graphique 1: Histogramme avec estimation de la densité
sns.histplot(dataframe[x_variable], kde=True, color='skyblue', ax=axes[0, 0])
axes[0, 0].set_title(f'Distribution de {x_variable}')
# Graphique 2: Boîte à moustaches (Boxplot)
sns.boxplot(x=dataframe[x_variable], color='lightblue', ax=axes[0, 1])
axes[0, 1].set_title(f'Boîte à moustaches de {x_variable}')
# Graphique 3: Violin Plot
sns.violinplot(x=dataframe[x_variable], color='lightgreen', ax=axes[1, 0])
axes[1, 0].set_title(f'Violin Plot de {x_variable}')
# Graphique 4: Diagramme de dispersion avec régression linéaire
sns.regplot(x=dataframe[x_variable], y=dataframe[y_variable], scatter_kws={'alpha': 0.3}, color='salmon', ax=axes[1, 1])
axes[1, 1].set_title(f'Relation entre {x_variable} et {y_variable}')
plt.tight_layout()
plt.show()
def pieplot_chauffage_interact(bd_dpe):
''' Cette fonction permet de tracer un digramme ciruclaire interactif des types d'energies :
- pour le chauffage
- pour les ECS'''
comptage_type_chauffage = bd_dpe['Type_énergie_principale_chauffage'].value_counts()
comptage_type_ECS = bd_dpe['Type_énergie_principale_ECS'].value_counts()
pourcentages_chauffage = (comptage_type_chauffage / len(bd_dpe)) * 100
pourcentages_ECS = (comptage_type_ECS / len(bd_dpe)) * 100
seuil = 3
autres_chauffage = pourcentages_chauffage[pourcentages_chauffage < seuil].sum()
autres_ECS = pourcentages_ECS[pourcentages_ECS < seuil].sum()
# Création de nouveaux tableaux pour le graphique avec "Autres"
nouveaux_pourcentages_chauffage = pourcentages_chauffage[pourcentages_chauffage >= seuil]
nouveaux_pourcentages_chauffage['Autres'] = autres_chauffage
nouveaux_pourcentages_ECS = pourcentages_ECS[pourcentages_ECS >= seuil]
nouveaux_pourcentages_ECS['Autres'] = autres_ECS
# Création des graphiques
fig_chauffage = go.Figure(go.Pie(labels=nouveaux_pourcentages_chauffage.index,
values=nouveaux_pourcentages_chauffage,
marker=dict(colors=px.colors.qualitative.Pastel1),
hole=0.3,
textinfo='label+percent'))
fig_ECS = go.Figure(go.Pie(labels=nouveaux_pourcentages_ECS.index,
values=nouveaux_pourcentages_ECS,
marker=dict(colors=px.colors.qualitative.Pastel1),
hole=0.3,
textinfo='label+percent'))
fig_chauffage.update_layout(title_text='Répartition types d\'énergies pour chauffage des logements',width = 1000 )
fig_ECS.update_layout(title_text='Répartition types d\'énergies pour ECS des logements',width = 1000 )
fig_chauffage.show()
fig_ECS.show()
def pieplot_chauffage(bd_dpe):
""" Cette fonction permet de tracer un digramme ciruclaire interactif des types d'energies :
- pour le chauffage
- pour les ECS
"""
# répartition des types d'energies de chauffage des logements :
comptage_type_chauffage = bd_dpe['Type_énergie_principale_chauffage'].value_counts()
comptage_type_ECS = bd_dpe['Type_énergie_principale_ECS'].value_counts()
### REPRESENTATION GRAPHIQUE
# Calcul des pourcentages pour chaque type d'énergie
pourcentages_chauffage = (comptage_type_chauffage / len(bd_dpe)) * 100
pourcentages_ECS = (comptage_type_ECS / len(bd_dpe)) * 100
seuil = 3
autres_chauffage = pourcentages_chauffage[pourcentages_chauffage < seuil].sum()
autres_ECS = pourcentages_ECS[pourcentages_ECS < seuil].sum()
nouveaux_pourcentages_chauffage = pourcentages_chauffage[pourcentages_chauffage >= seuil]
nouveaux_pourcentages_chauffage['Autres'] = autres_chauffage
nouveaux_pourcentages_ECS = pourcentages_ECS[pourcentages_ECS >= seuil]
nouveaux_pourcentages_ECS['Autres'] = autres_ECS
fig, axes = plt.subplots(nrows=1, ncols=2, figsize=(14, 6))
# Graphique pour le chauffage
axes[0].pie(x=nouveaux_pourcentages_chauffage, labels=nouveaux_pourcentages_chauffage.index, startangle=45,
colors=sns.color_palette('pastel', len(nouveaux_pourcentages_chauffage)), autopct='%1.1f%%')
axes[0].set_title('Répartition types d\'énergies pour chauffage des logements')
# Graphique pour l'ECS
axes[1].pie(x=nouveaux_pourcentages_ECS, labels=nouveaux_pourcentages_ECS.index, startangle=45,
colors=sns.color_palette('pastel', len(nouveaux_pourcentages_ECS)), autopct='%1.1f%%')
axes[1].set_title('Répartition types d\'énergies pour ECS des logements')
plt.show()
def barplot_chauffage(bd_dpe):
"""
Fonction qui permet d'afficher un graphique en barre des types d'énergies
"""
# Comptage pour 'Type_énergie_principale_chauffage'
comptage_type_chauffage = bd_dpe['Type_énergie_principale_chauffage'].value_counts()
colors_chauffage = sns.color_palette('Set1')[0:len(comptage_type_chauffage)]
# Comptage pour 'type_principale_energie_ECS'
comptage_type_ECS = bd_dpe['Type_énergie_principale_ECS'].value_counts()
colors_ECS = sns.color_palette('Set2')[0:len(comptage_type_ECS)]
# Création de la figure avec deux sous-graphiques côte à côte
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(14, 6))
# Barres pour 'Type_énergie_principale_chauffage'
ax1.bar(comptage_type_chauffage.index, comptage_type_chauffage, color=colors_chauffage, label='Chauffage')
ax1.set_title('Répartition des types d\'énergies pour chauffage')
ax1.set_xticklabels(comptage_type_chauffage.index, rotation=45, ha='right') # Incliner les noms
# Barres pour 'type_principale_energie_ECS'
ax2.bar(comptage_type_ECS.index, comptage_type_ECS, color=colors_ECS, label='ECS', alpha=0.7)
ax2.set_title('Répartition des types d\'énergies pour ECS')
ax2.set_xticklabels(comptage_type_ECS.index, rotation=45, ha='right') # Incliner les noms
# Ajustements de la mise en page
plt.tight_layout()
# Affichage de la figure
plt.show()
def barplot_chauffage_inter(bd_dpe):
""" barplot interactif avec ploty"""
comptage_type_chauffage = bd_dpe['Type_énergie_principale_chauffage'].value_counts()
#figure interactive Plotly pour 'Type_énergie_principale_chauffage'
fig_chauffage = px.bar(
x=comptage_type_chauffage.index,
y=comptage_type_chauffage,
color=comptage_type_chauffage.index,
labels={'x': 'Types d\'énergies', 'y': 'Nombre d\'occurrences'},
title='Répartition des types d\'énergies pour chauffage'
)
fig_chauffage.update_layout(xaxis=dict(tickangle=-20, tickmode='array', tickvals=list(comptage_type_chauffage.index)))
# Comptage pour 'type_principale_energie_ECS'
comptage_type_ECS = bd_dpe['Type_énergie_principale_ECS'].value_counts()
#figure interactive Plotly pour 'type_principale_energie_ECS'
fig_ECS = px.bar(
x=comptage_type_ECS.index,
y=comptage_type_ECS,
color=comptage_type_ECS.index,
labels={'x': 'Types d\'énergies', 'y': 'Nombre d\'occurrences'},
title='Répartition des types d\'énergies pour ECS'
)
fig_ECS.update_layout(xaxis=dict(tickangle=-45, tickmode='array', tickvals=list(comptage_type_ECS.index)))
pyo.init_notebook_mode(connected=True)
pyo.iplot(fig_chauffage)
pyo.iplot(fig_ECS)