public class HWForecastConfig
extends Object
The command for the Holt-Winters forecasts has the following structure:
ANALYTICS:HoltWinters=outputPrefix
:inputColumn
(:numPeriodsToForecast)
(:periodInSeconds)
(:confidenceLevel)
where:
- inputColumn is the name of the column whose values we want to forecast
- numPeriodsToForecast is the number of periods we want to forecast
- periodInSeconds is the length of a period (or season) in seconds, if
this value is < 1, then we assume that every sample is a period.
- confidenceLevel a number from 0 to 1 (exclusive) used to compute
the lower and upper bounds of the confidence interval
- Author:
- jwhite