public class TimeSeriesModel extends Model implements com.sun.xml.bind.Locatable
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}MiningSchema"/>
<element ref="{http://www.dmg.org/PMML-4_1}Output" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}ModelStats" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}ModelExplanation" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}LocalTransformations" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}TimeSeries" maxOccurs="3" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}SpectralAnalysis" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}ARIMA" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}ExponentialSmoothing" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}SeasonalTrendDecomposition" minOccurs="0"/>
<element ref="{http://www.dmg.org/PMML-4_1}ModelVerification" minOccurs="0"/>
</sequence>
<attribute name="modelName" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="functionName" use="required" type="{http://www.dmg.org/PMML-4_1}MINING-FUNCTION" />
<attribute name="algorithmName" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="bestFit" use="required" type="{http://www.dmg.org/PMML-4_1}TIMESERIES-ALGORITHM" />
<attribute name="isScorable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
algorithmName |
protected Object |
arima |
protected TimeSeriesAlgorithmType |
bestFit |
protected ExponentialSmoothing |
exponentialSmoothing |
protected List<Extension> |
extensions |
protected MiningFunctionType |
functionName |
protected LocalTransformations |
localTransformations |
protected Locator |
locator |
protected MiningSchema |
miningSchema |
protected ModelExplanation |
modelExplanation |
protected String |
modelName |
protected ModelStats |
modelStats |
protected ModelVerification |
modelVerification |
protected Output |
output |
protected Boolean |
scorable |
protected Object |
seasonalTrendDecomposition |
protected Object |
spectralAnalysis |
protected List<TimeSeries> |
timeSeries |
| Constructor and Description |
|---|
TimeSeriesModel()
Deprecated.
|
TimeSeriesModel(MiningSchema miningSchema,
MiningFunctionType functionName,
TimeSeriesAlgorithmType bestFit) |
| Modifier and Type | Method and Description |
|---|---|
VisitorAction |
accept(Visitor visitor) |
String |
getAlgorithmName()
Gets the value of the algorithmName property.
|
Object |
getARIMA()
Gets the value of the arima property.
|
TimeSeriesAlgorithmType |
getBestFit()
Gets the value of the bestFit property.
|
ExponentialSmoothing |
getExponentialSmoothing()
Gets the value of the exponentialSmoothing property.
|
List<Extension> |
getExtensions()
Gets the value of the extensions property.
|
MiningFunctionType |
getFunctionName()
Gets the value of the functionName property.
|
LocalTransformations |
getLocalTransformations()
Gets the value of the localTransformations property.
|
MiningSchema |
getMiningSchema()
Gets the value of the miningSchema property.
|
ModelExplanation |
getModelExplanation()
Gets the value of the modelExplanation property.
|
String |
getModelName()
Gets the value of the modelName property.
|
ModelStats |
getModelStats()
Gets the value of the modelStats property.
|
ModelVerification |
getModelVerification()
Gets the value of the modelVerification property.
|
Output |
getOutput()
Gets the value of the output property.
|
Object |
getSeasonalTrendDecomposition()
Gets the value of the seasonalTrendDecomposition property.
|
Object |
getSpectralAnalysis()
Gets the value of the spectralAnalysis property.
|
Targets |
getTargets()
Gets the value of the targets property.
|
List<TimeSeries> |
getTimeSeries()
Gets the value of the timeSeries property.
|
boolean |
isScorable()
Gets the value of the scorable property.
|
void |
setAlgorithmName(String value)
Sets the value of the algorithmName property.
|
void |
setARIMA(Object value)
Sets the value of the arima property.
|
void |
setBestFit(TimeSeriesAlgorithmType value)
Sets the value of the bestFit property.
|
void |
setExponentialSmoothing(ExponentialSmoothing value)
Sets the value of the exponentialSmoothing property.
|
void |
setFunctionName(MiningFunctionType value)
Sets the value of the functionName property.
|
void |
setLocalTransformations(LocalTransformations value)
Sets the value of the localTransformations property.
|
void |
setMiningSchema(MiningSchema value)
Sets the value of the miningSchema property.
|
void |
setModelExplanation(ModelExplanation value)
Sets the value of the modelExplanation property.
|
void |
setModelName(String value)
Sets the value of the modelName property.
|
void |
setModelStats(ModelStats value)
Sets the value of the modelStats property.
|
void |
setModelVerification(ModelVerification value)
Sets the value of the modelVerification property.
|
void |
setOutput(Output value)
Sets the value of the output property.
|
void |
setScorable(Boolean value)
Sets the value of the scorable property.
|
void |
setSeasonalTrendDecomposition(Object value)
Sets the value of the seasonalTrendDecomposition property.
|
void |
setSourceLocation(Locator newLocator) |
void |
setSpectralAnalysis(Object value)
Sets the value of the spectralAnalysis property.
|
void |
setTargets(Targets targets)
Sets the value of the targets property.
|
Locator |
sourceLocation() |
protected MiningSchema miningSchema
protected Output output
protected ModelStats modelStats
protected ModelExplanation modelExplanation
protected LocalTransformations localTransformations
protected List<TimeSeries> timeSeries
protected Object spectralAnalysis
protected Object arima
protected ExponentialSmoothing exponentialSmoothing
protected Object seasonalTrendDecomposition
protected ModelVerification modelVerification
protected String modelName
protected MiningFunctionType functionName
protected String algorithmName
protected TimeSeriesAlgorithmType bestFit
protected Boolean scorable
protected Locator locator
@Deprecated public TimeSeriesModel()
public TimeSeriesModel(MiningSchema miningSchema, MiningFunctionType functionName, TimeSeriesAlgorithmType bestFit)
public List<Extension> getExtensions()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the extensions property.
For example, to add a new item, do as follows:
getExtensions().add(newItem);
Objects of the following type(s) are allowed in the list
Extension
public MiningSchema getMiningSchema()
getMiningSchema in class ModelMiningSchemapublic void setMiningSchema(MiningSchema value)
setMiningSchema in class Modelvalue - allowed object is
MiningSchemapublic Output getOutput()
public void setOutput(Output value)
public ModelStats getModelStats()
getModelStats in class ModelModelStatspublic void setModelStats(ModelStats value)
setModelStats in class Modelvalue - allowed object is
ModelStatspublic ModelExplanation getModelExplanation()
ModelExplanationpublic void setModelExplanation(ModelExplanation value)
value - allowed object is
ModelExplanationpublic LocalTransformations getLocalTransformations()
getLocalTransformations in class ModelLocalTransformationspublic void setLocalTransformations(LocalTransformations value)
setLocalTransformations in class Modelvalue - allowed object is
LocalTransformationspublic List<TimeSeries> getTimeSeries()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the timeSeries property.
For example, to add a new item, do as follows:
getTimeSeries().add(newItem);
Objects of the following type(s) are allowed in the list
TimeSeries
public Object getSpectralAnalysis()
Objectpublic void setSpectralAnalysis(Object value)
value - allowed object is
Objectpublic Object getARIMA()
Objectpublic void setARIMA(Object value)
value - allowed object is
Objectpublic ExponentialSmoothing getExponentialSmoothing()
ExponentialSmoothingpublic void setExponentialSmoothing(ExponentialSmoothing value)
value - allowed object is
ExponentialSmoothingpublic Object getSeasonalTrendDecomposition()
Objectpublic void setSeasonalTrendDecomposition(Object value)
value - allowed object is
Objectpublic ModelVerification getModelVerification()
ModelVerificationpublic void setModelVerification(ModelVerification value)
value - allowed object is
ModelVerificationpublic String getModelName()
getModelName in class ModelStringpublic void setModelName(String value)
setModelName in class Modelvalue - allowed object is
Stringpublic MiningFunctionType getFunctionName()
getFunctionName in class ModelMiningFunctionTypepublic void setFunctionName(MiningFunctionType value)
setFunctionName in class Modelvalue - allowed object is
MiningFunctionTypepublic String getAlgorithmName()
Stringpublic void setAlgorithmName(String value)
value - allowed object is
Stringpublic TimeSeriesAlgorithmType getBestFit()
TimeSeriesAlgorithmTypepublic void setBestFit(TimeSeriesAlgorithmType value)
value - allowed object is
TimeSeriesAlgorithmTypepublic boolean isScorable()
isScorable in class ModelBooleanpublic void setScorable(Boolean value)
setScorable in class Modelvalue - allowed object is
Booleanpublic Locator sourceLocation()
sourceLocation in interface com.sun.xml.bind.LocatablesourceLocation in class PMMLObjectpublic void setSourceLocation(Locator newLocator)
setSourceLocation in class PMMLObjectpublic Targets getTargets()
getTargets in class ModelUnsupportedOperationException - Always.public void setTargets(Targets targets)
setTargets in class ModelUnsupportedOperationException - Always.public VisitorAction accept(Visitor visitor)
Copyright © 2013 University of Tartu. All Rights Reserved.