pydlm icon indicating copy to clipboard operation
pydlm copied to clipboard

Shouldn't plotPredictN start plotting at date+1 ?

Open peterih opened this issue 5 years ago • 0 comments

All my plots with plotpredictN seems to start with the first predicted point above or below the point selected by date= .

To clarify what I mean, I think the line in dml.py for the function plotPredictN :

predictedTimeRange = range(date, date + N)

should be

predictedTimeRange = range(date + 1, date + N +1)

peterih avatar Mar 29 '20 11:03 peterih