Spaces:
Sleeping
Sleeping
GMARTINEZMILLA
commited on
Commit
•
9923f48
1
Parent(s):
6a893b4
feat: updated website
Browse files
app.py
CHANGED
@@ -370,6 +370,10 @@ elif page == "Customer Analysis":
|
|
370 |
historical_data['fecha_mes'] = pd.to_datetime(historical_data['fecha_mes'], errors='coerce')
|
371 |
results['fecha_mes'] = pd.to_datetime(results['fecha_mes'], errors='coerce')
|
372 |
|
|
|
|
|
|
|
|
|
373 |
# Filtrar datos históricos por cliente y por el rango de fechas (2023)
|
374 |
datos_historicos = historical_data[
|
375 |
(historical_data['cliente_id'] == customer_code_str) &
|
@@ -431,12 +435,13 @@ elif page == "Customer Analysis":
|
|
431 |
line=dict(color='green')
|
432 |
))
|
433 |
|
434 |
-
# Personalizar layout
|
435 |
fig.update_layout(
|
436 |
title=f"Ventas Históricas, Predichas y Reales para Cliente {customer_code}",
|
437 |
xaxis_title="Fecha",
|
438 |
yaxis_title="Ventas (€)",
|
439 |
height=600,
|
|
|
440 |
legend_title="Tipo de Ventas",
|
441 |
hovermode="x unified"
|
442 |
)
|
|
|
370 |
historical_data['fecha_mes'] = pd.to_datetime(historical_data['fecha_mes'], errors='coerce')
|
371 |
results['fecha_mes'] = pd.to_datetime(results['fecha_mes'], errors='coerce')
|
372 |
|
373 |
+
# Definir el rango de fechas deseado
|
374 |
+
fecha_inicio = pd.to_datetime("2023-01-01")
|
375 |
+
fecha_corte = pd.to_datetime("2024-09-30")
|
376 |
+
|
377 |
# Filtrar datos históricos por cliente y por el rango de fechas (2023)
|
378 |
datos_historicos = historical_data[
|
379 |
(historical_data['cliente_id'] == customer_code_str) &
|
|
|
435 |
line=dict(color='green')
|
436 |
))
|
437 |
|
438 |
+
# Personalizar el layout para enfocarse en 2023 y 2024
|
439 |
fig.update_layout(
|
440 |
title=f"Ventas Históricas, Predichas y Reales para Cliente {customer_code}",
|
441 |
xaxis_title="Fecha",
|
442 |
yaxis_title="Ventas (€)",
|
443 |
height=600,
|
444 |
+
xaxis_range=[fecha_inicio, fecha_corte], # Ajustar el rango del eje x a 2023-2024
|
445 |
legend_title="Tipo de Ventas",
|
446 |
hovermode="x unified"
|
447 |
)
|