LaurentTRIPIED commited on
Commit
1aaa626
1 Parent(s): a4e86cd

V2-Liste_MAP_Stat_21

Browse files
Files changed (1) hide show
  1. statistiques.py +4 -1
statistiques.py CHANGED
@@ -10,10 +10,13 @@ def display_companies_by_sector(df):
10
  sector_counts = df['libelle_section_naf'].value_counts().reset_index()
11
  sector_counts.columns = ['Secteur', 'Nombre']
12
  fig = px.bar(sector_counts, x='Secteur', y='Nombre',
13
- color='Nombre', labels={'Nombre':'Nombre d\'entreprises'}, template='plotly_white')
14
  fig.update_layout(xaxis_tickangle=-45, showlegend=False)
 
 
15
  st.plotly_chart(fig)
16
 
 
17
  def display_company_sizes(df):
18
  fig = px.histogram(df, x='tranche_effectif_entreprise',
19
  labels={'tranche_effectif_entreprise':'Taille de l\'entreprise', 'count':'Nombre'}, template='plotly_white')
 
10
  sector_counts = df['libelle_section_naf'].value_counts().reset_index()
11
  sector_counts.columns = ['Secteur', 'Nombre']
12
  fig = px.bar(sector_counts, x='Secteur', y='Nombre',
13
+ color='Nombre', labels={'Nombre': ''}, template='plotly_white')
14
  fig.update_layout(xaxis_tickangle=-45, showlegend=False)
15
+ # Assurez-vous que la légende est désactivée
16
+ fig.update_traces(showlegend=False)
17
  st.plotly_chart(fig)
18
 
19
+
20
  def display_company_sizes(df):
21
  fig = px.histogram(df, x='tranche_effectif_entreprise',
22
  labels={'tranche_effectif_entreprise':'Taille de l\'entreprise', 'count':'Nombre'}, template='plotly_white')