Add more time points to last plot.
This commit is contained in:
parent
6f070303e5
commit
1a419f439f
2
model.py
2
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 = []
|
||||
|
Loading…
Reference in New Issue
Block a user