pydlm
pydlm copied to clipboard
Shouldn't plotPredictN start plotting at date+1 ?
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)