Add more time points to last plot.

This commit is contained in:
Sam Fredrickson 2024-11-14 17:02:35 -08:00
parent 6f070303e5
commit 1a419f439f

View File

@ -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 = []