Skip to content

Commit

Permalink
correcting ffilter
Browse files Browse the repository at this point in the history
  • Loading branch information
Arctusol committed Dec 5, 2024
1 parent 6fa2a7e commit 1f3db26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/obstetrique.py
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ def load_capacity_data():
st.subheader("Évolution des pathologies par Sexe - Augmentation les plus importantes (2018-2022)")

# Données filtrées selon le sexe
df_filtered = df_filtered[df_filtered['sexe'] == selected_sex]
df_filtered = df_filtered[df_filtered['sexe'] == selected_sexe]

# Calculer les évolutions année par année
evolutions_sexe_by_year = {}
Expand Down

0 comments on commit 1f3db26

Please sign in to comment.