ARMAFactory¶
- 
class 
ARMAFactory(*args)¶ Base class for ARMA models factory.
Methods
build(self, \*args)Estimate the ARMA model from data.
getClassName(self)Accessor to the object’s name.
getId(self)Accessor to the object’s id.
getImplementation(self)Accessor to the underlying implementation.
getName(self)Accessor to the object’s name.
setName(self, name)Accessor to the object’s name.
- 
__init__(self, \*args)¶ Initialize self. See help(type(self)) for accurate signature.
- 
build(self, \*args)¶ Estimate the ARMA model from data.
- Available usages:
 build(myTimeSeries)
build(myProcessSample)
- Parameters
 - myTimeSeries
TimeSeries The time series from which the ARMA model is estimated.
- myProcessSample
ProcessSample The sample of time series from which the ARMA model is estimated.
- myTimeSeries
 - Returns
 - myARMA
ARMA The estimated spectral model.
- myARMA
 
- 
getClassName(self)¶ Accessor to the object’s name.
- Returns
 - class_namestr
 The object class name (object.__class__.__name__).
- 
getId(self)¶ Accessor to the object’s id.
- Returns
 - idint
 Internal unique identifier.
- 
getImplementation(self)¶ Accessor to the underlying implementation.
- Returns
 - implImplementation
 The implementation class.
- 
getName(self)¶ Accessor to the object’s name.
- Returns
 - namestr
 The name of the object.
- 
setName(self, name)¶ Accessor to the object’s name.
- Parameters
 - namestr
 The name of the object.
- 
 
      OpenTURNS