GMARTINEZMILLA commited on
Commit
0b07925
1 Parent(s): 7c78777

feat: Added about section underneath table in col 3

Browse files
Files changed (1) hide show
  1. app.py +2 -3
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('Los clientes al detalle', expanded=True):
282
  st.write(f'''
283
- - **Rango de ventas**: €{sales_min:,.0f} - €{sales_max:,.0f}.
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
  ''')