Zbehel commited on
Commit ·
9a222e8
1
Parent(s): cd5f1d2
Mettre tout sur le port 7860 et créer des onglets pour l'application Streamlit et le tableau de bord MLflow
Browse files
app.py
CHANGED
|
@@ -59,9 +59,9 @@ with tab1:
|
|
| 59 |
|
| 60 |
st.write(f"Share of late check-ins: {share_late_checkins:.2f}%")
|
| 61 |
|
| 62 |
-
# Visualiser les données
|
| 63 |
-
fig = px.histogram(df, x='delta', title='Distribution of Delays Between Rentals')
|
| 64 |
-
st.plotly_chart(fig)
|
| 65 |
|
| 66 |
# Analyser les cas problématiques résolus
|
| 67 |
solved_cases = df[(df['delta'] < threshold) & (df['late_checkin'] == True)].shape[0]
|
|
|
|
| 59 |
|
| 60 |
st.write(f"Share of late check-ins: {share_late_checkins:.2f}%")
|
| 61 |
|
| 62 |
+
# # Visualiser les données
|
| 63 |
+
# fig = px.histogram(df, x='delta', title='Distribution of Delays Between Rentals')
|
| 64 |
+
# st.plotly_chart(fig)
|
| 65 |
|
| 66 |
# Analyser les cas problématiques résolus
|
| 67 |
solved_cases = df[(df['delta'] < threshold) & (df['late_checkin'] == True)].shape[0]
|