Package org.dmg.pmml.time_series
Class ExponentialSmoothing
- java.lang.Object
-
- org.dmg.pmml.PMMLObject
-
- org.dmg.pmml.time_series.Algorithm
-
- org.dmg.pmml.time_series.ExponentialSmoothing
-
- All Implemented Interfaces:
java.io.Serializable,HasLocator,Visitable
public class ExponentialSmoothing extends Algorithm
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExponentialSmoothing.Transformation
-
Constructor Summary
Constructors Constructor Description ExponentialSmoothing()ExponentialSmoothing(Level level)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VisitorActionaccept(Visitor visitor)ExponentialSmoothingaddTimeValues(TimeValue... timeValues)LevelgetLevel()java.lang.NumbergetRMSE()SeasonalityExpoSmoothgetSeasonalityExpoSmooth()java.util.List<TimeValue>getTimeValues()ExponentialSmoothing.TransformationgetTransformation()TrendExpoSmoothgetTrendExpoSmooth()booleanhasTimeValues()LevelrequireLevel()ExponentialSmoothingsetLevel(Level level)ExponentialSmoothingsetRMSE(java.lang.Number rmse)ExponentialSmoothingsetSeasonalityExpoSmooth(SeasonalityExpoSmooth seasonalityExpoSmooth)ExponentialSmoothingsetTransformation(ExponentialSmoothing.Transformation transformation)ExponentialSmoothingsetTrendExpoSmooth(TrendExpoSmooth trendExpoSmooth)-
Methods inherited from class org.dmg.pmml.PMMLObject
getLocator, getSchemaVersion, getSchemaVersion, hasLocator, setLocator
-
-
-
-
Constructor Detail
-
ExponentialSmoothing
public ExponentialSmoothing()
-
ExponentialSmoothing
public ExponentialSmoothing(Level level)
-
-
Method Detail
-
getRMSE
public java.lang.Number getRMSE()
-
setRMSE
public ExponentialSmoothing setRMSE(java.lang.Number rmse)
-
getTransformation
public ExponentialSmoothing.Transformation getTransformation()
-
setTransformation
public ExponentialSmoothing setTransformation(ExponentialSmoothing.Transformation transformation)
-
requireLevel
public Level requireLevel()
-
getLevel
public Level getLevel()
-
setLevel
public ExponentialSmoothing setLevel(Level level)
-
getTrendExpoSmooth
public TrendExpoSmooth getTrendExpoSmooth()
-
setTrendExpoSmooth
public ExponentialSmoothing setTrendExpoSmooth(TrendExpoSmooth trendExpoSmooth)
-
getSeasonalityExpoSmooth
public SeasonalityExpoSmooth getSeasonalityExpoSmooth()
-
setSeasonalityExpoSmooth
public ExponentialSmoothing setSeasonalityExpoSmooth(SeasonalityExpoSmooth seasonalityExpoSmooth)
-
hasTimeValues
public boolean hasTimeValues()
-
getTimeValues
public java.util.List<TimeValue> getTimeValues()
-
addTimeValues
public ExponentialSmoothing addTimeValues(TimeValue... timeValues)
-
accept
public VisitorAction accept(Visitor visitor)
-
-