wwrechard/pydlm

Shouldn't plotPredictN start plotting at date+1 ?

peterih opened this issue · 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)