ARMAOutlierIdentification Class |
Namespace: Imsl.Stat
The ARMAOutlierIdentification type exposes the following members.
Name | Description | |
---|---|---|
![]() | ARMAOutlierIdentification |
Constructor for ARMAOutlierIdentification.
|
Name | Description | |
---|---|---|
![]() | Compute |
Detects and determines outliers and simultaneously estimates the model
parameters for the given time series.
|
![]() | ComputeForecasts |
Computes forecasts, associated probability limits and ![]() |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetAR |
Returns the final autoregressive parameter estimates.
|
![]() | GetDeviations |
Returns the deviations used for calculating the
forecast confidence limits.
|
![]() | GetForecast |
Returns forecasts for the original outlier contaminated series.
|
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetMA |
Returns the final moving average parameter estimates.
|
![]() | GetOmegaWeights |
Returns the ![]() |
![]() | GetOutlierFreeForecast |
Returns forecasts for the outlier free series.
|
![]() | GetOutlierFreeSeries |
Returns the outlier free series.
|
![]() | GetOutlierStatistics |
Returns the outlier statistics.
|
![]() | GetPsiWeights |
Returns the ![]() |
![]() | GetResidual |
Returns the residuals.
|
![]() | GetTauStatistics |
Returns the t value for each detected outlier.
|
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() ![]() | ADDITIVE |
Indicates detection of an additive outlier.
|
![]() ![]() | INNOVATIONAL |
Indicates detection of an innovational outlier.
|
![]() ![]() | LEVEL_SHIFT |
Indicates detection of a level shift outlier.
|
![]() ![]() | TEMPORARY_CHANGE |
Indicates detection of a temporary change outlier.
|
![]() ![]() | UNABLE_TO_IDENTIFY |
Indicates detection of an outlier that cannnot be categorized.
|
Name | Description | |
---|---|---|
![]() | AccuracyTolerance |
The tolerance value controlling the accuracy of the parameter estimates.
|
![]() | AIC |
Returns Akaike's information criterion (AIC).
|
![]() | AICC |
Returns Akaike's Corrected Information Criterion (AICC).
|
![]() | BIC |
Returns the Bayesian Information Criterion (BIC).
|
![]() | Confidence |
The confidence level for calculating confidence
limit deviations via method GetDeviations.
|
![]() | Constant |
Returns the constant parameter estimate.
|
![]() | CriticalValue |
The critical value used as a threshold during outlier detection.
|
![]() | Delta |
The dampening effect parameter.
|
![]() | NumberOfOutliers |
Returns the number of outliers detected.
|
![]() | RelativeError |
The stopping criterion for use in the nonlinear equation solver.
|
![]() | ResidualStandardError |
Returns the residual standard error of the outlier free series.
|
Consider a univariate time series that can be described by the
following multiplicative seasonal ARIMA model of order
:
Outlier detection and parameter estimation
In general, is not directly observable due to the influence of outliers.
Chen and Liu (1993) distinguish between four types of outliers: innovational outliers (IO), additive
outliers (AO), temporary changes (TC) and level shifts (LS). If an outlier occurs as the last observation
of the series, then Chen and Liu's algorithm is unable to determine the outlier's classification. In
class ARMAOutlierIdentification, such an outlier is called a UI (unable to identify) and
is treated as an innovational outlier.
In order to take the effects of multiple outliers occurring at time points
into account, Chen and Liu consider the following model:
The last formula shows that the outlier free series can be obtained from the
original series
by removing all occurring outlier effects:
Class ARMAOutlierIdentification is an implementation of Chen and Liu's algorithm. It determines
the coefficients in and
and the outlier effects
in the model for the observed series jointly in three stages. The magnitude of the outlier effects is determined
by least squares estimates. Outlier detection itself is realized by examination of the maximum value of the
standardized statistics of the outlier effects. For a detailed description, see Chen and Liu's original
paper (1993).
Intermediate and final estimates for the coefficients in and
are computed by the Compute methods from classes ARMA and ARMAMaxLikelihood.
If the roots of
or
lie on or within the unit circle, then
the algorithm stops with an appropriate exception. In this case, different values for p and q should be tried.
Forecasting
From the relation between original and outlier free series,
Step 1: Computation of the forecasts for the outlier free series
Since
Step 2: Computation of the forecasts for the original series
by adding the multiple outlier effects to the forecasts for
The formulas for for the different types of outliers are as follows:
Innovational outlier (IO)
Additive outliers (AO)
Level shifts (LS)
Temporary changes (TC)
Innovational outliers (IO)
Additive outliers (AO)
Level shifts (LS)
Temporary changes (TC)