KLEB38 commited on
Commit
048abdb
·
1 Parent(s): d087119

fix : percentage of salary increment

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -4
src/streamlit_app.py CHANGED
@@ -81,10 +81,8 @@ with tab1:
81
  annees_promotion = st.number_input("Années depuis la dernière promotion", min_value=0, max_value=15, value=1)
82
  annees_manager = st.number_input("Années sous responsable actuel", min_value=0, max_value=20, value=2)
83
  nb_formations = st.number_input("Nombre de formations suivies", min_value=0, max_value=6, value=2)
84
- augmentation = st.selectbox("Augmentation salaire précédente", [
85
- "11%", "12%", "13%", "14%", "15%", "16%", "17%", "18%",
86
- "19%", "20%", "21%", "22%", "23%", "24%", "25%"
87
- ])
88
 
89
  with col3:
90
  st.subheader("Satisfaction scores")
 
81
  annees_promotion = st.number_input("Années depuis la dernière promotion", min_value=0, max_value=15, value=1)
82
  annees_manager = st.number_input("Années sous responsable actuel", min_value=0, max_value=20, value=2)
83
  nb_formations = st.number_input("Nombre de formations suivies", min_value=0, max_value=6, value=2)
84
+ augmentation_num = st.number_input("Augmentation salaire précédente (%)", min_value=11, max_value=25, value=15)
85
+ augmentation = f"{augmentation_num} %"
 
 
86
 
87
  with col3:
88
  st.subheader("Satisfaction scores")