Skip to content

Commit

Permalink
changes in exp
Browse files Browse the repository at this point in the history
  • Loading branch information
robfairh committed Aug 6, 2019
1 parent b4a8f07 commit 08cc210
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion d3ploy/DO_solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def exp_smoothing(ts, back_steps=10, degree=1, steps=1):
# https://github.com/statsmodels/statsmodels/issues/4878
elif len(timeseries) == 5:
timeseries = np.append(np.mean(timeseries), timeseries)
#print(timeseries)
model = hw.SimpleExpSmoothing(timeseries)
model_fit = model.fit()
x = model_fit.predict(len(timeseries), len(timeseries) + steps - 1)
Expand Down

0 comments on commit 08cc210

Please sign in to comment.