final changes for spider chart

This commit is contained in:
Thomas PIQUE 2024-04-02 11:59:06 +00:00
parent 41decc7acd
commit 197703a857

View File

@ -160,7 +160,7 @@ def radar_mp_plot_all(df, type_of_activity) :
var_not_perc = ["age"]
# Initialize graphic
fig, ax = plt.subplots(2,2, figsize=(20, 22), subplot_kw=dict(polar=True))
fig, ax = plt.subplots(2,2, figsize=(20, 21), subplot_kw=dict(polar=True))
for index in range(nb_segments) :
row = index // 2 # Division entière pour obtenir le numéro de ligne
@ -212,7 +212,7 @@ def radar_mp_plot_all(df, type_of_activity) :
fig.suptitle(f"Characteristics of marketing personae of {type_of_activity} companies", size=32)
# plt.tight_layout()
plt.tight_layout()
# plt.show()
def known_sociodemo_caracteristics(df, type_of_activity) :