Skip to content

Instantly share code, notes, and snippets.

@malakhov-dmitrii
Created December 7, 2019 10:59
Show Gist options
  • Save malakhov-dmitrii/446f4966e3e17cea55dfa846255723a7 to your computer and use it in GitHub Desktop.
Save malakhov-dmitrii/446f4966e3e17cea55dfa846255723a7 to your computer and use it in GitHub Desktop.
predict = (
data,
a = 0.95,
b = 0.4,
g = 0.2,
p = this.PERIODS_TO_PREDICT,
) => {
const alpha = a;
const beta = b;
const gamma = g;
const predictions = forecast(data, alpha, beta, gamma, this.OBSERVATIONS_PER_SEASON, p);
return predictions;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment