From 83932ef1e64de41f3fd18e0243e6884f0338e408 Mon Sep 17 00:00:00 2001 From: MAYANKSHARMA Date: Mon, 6 Jan 2025 21:11:51 +0530 Subject: [PATCH] Rename MAE plot line from "Daily Total MAE" to "Latest Forecast" --- src/plots/forecast_horizon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plots/forecast_horizon.py b/src/plots/forecast_horizon.py index 7ba75da..fcee7b3 100644 --- a/src/plots/forecast_horizon.py +++ b/src/plots/forecast_horizon.py @@ -24,7 +24,7 @@ def make_mae_by_forecast_horizon( x=df_mae["datetime_utc"], y=df_mae["MAE"], mode="lines", - name="Daily Total MAE", + name="Latest Forecast", line=dict(color="#FFD053"), ) )