Spaces:
Sleeping
Sleeping
GMARTINEZMILLA
commited on
Commit
•
0b07925
1
Parent(s):
7c78777
feat: Added about section underneath table in col 3
Browse files
app.py
CHANGED
@@ -278,10 +278,9 @@ if page == "📃 Resumen":
|
|
278 |
sales_10th = ventas_clientes['total_sales'].quantile(0.1)
|
279 |
|
280 |
# About Section with relevant data insights
|
281 |
-
with st.expander('
|
282 |
st.write(f'''
|
283 |
-
- **
|
284 |
-
- **Ventas Medianas**: €{sales_median:,.0f} .
|
285 |
- **Percentil 90**: €{sales_90th:,.0f}.
|
286 |
- **Percentil 10**: €{sales_10th:,.0f}.
|
287 |
''')
|
|
|
278 |
sales_10th = ventas_clientes['total_sales'].quantile(0.1)
|
279 |
|
280 |
# About Section with relevant data insights
|
281 |
+
with st.expander('Clientes al detalle', expanded=True):
|
282 |
st.write(f'''
|
283 |
+
- **Venta Mediana**: €{sales_median:,.0f} .
|
|
|
284 |
- **Percentil 90**: €{sales_90th:,.0f}.
|
285 |
- **Percentil 10**: €{sales_10th:,.0f}.
|
286 |
''')
|