Spaces:
Sleeping
Sleeping
Update pages/2_Simulateur_Seuil.py
Browse files
pages/2_Simulateur_Seuil.py
CHANGED
|
@@ -5,6 +5,14 @@ import altair as alt
|
|
| 5 |
# --- CONFIGURATION DE LA PAGE ---
|
| 6 |
st.set_page_config(page_title="Simulateur de Seuil Getaround", page_icon="🧮")
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
st.title("Simulateur de Seuil d'Annulation pour Getaround")
|
| 9 |
|
| 10 |
# --- 1. CHARGEMENT ET PRÉPARATION DES DONNÉES ---
|
|
|
|
| 5 |
# --- CONFIGURATION DE LA PAGE ---
|
| 6 |
st.set_page_config(page_title="Simulateur de Seuil Getaround", page_icon="🧮")
|
| 7 |
|
| 8 |
+
with st.sidebar:
|
| 9 |
+
st.title("Dashboard Menu")
|
| 10 |
+
|
| 11 |
+
st.page_link("app.py", label="Accueil", icon="🏠")
|
| 12 |
+
st.page_link("pages/1_EDA_GetAround.py", label="EDA GetAround", icon="📈")
|
| 13 |
+
st.page_link("pages/2_Simulateur_Seuil.py", label="Simulateur Seuil", icon="⏱️")
|
| 14 |
+
st.page_link("pages/3_Prediction_Prix.py", label="Prediction Prix", icon="💰")
|
| 15 |
+
|
| 16 |
st.title("Simulateur de Seuil d'Annulation pour Getaround")
|
| 17 |
|
| 18 |
# --- 1. CHARGEMENT ET PRÉPARATION DES DONNÉES ---
|