From 1a419f439f5afabb2a22531c6ebb578ad0758726 Mon Sep 17 00:00:00 2001 From: Sam Fredrickson Date: Thu, 14 Nov 2024 17:02:35 -0800 Subject: [PATCH] Add more time points to last plot. --- model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model.py b/model.py index 48afa21..645a49a 100644 --- a/model.py +++ b/model.py @@ -331,7 +331,7 @@ def create_plots(df, start=None, end=None, project_days=365): ax4 = plt.subplot(4, 1, 4) # Calculate and plot price ranges at different future points - timepoints = np.array([30, 90, 180, 365]) + timepoints = np.array(range(30,365,30)) timepoints = timepoints[timepoints <= project_days] ranges = []