outidentify
performs one iteration of Wei's iterative procedure to identify impact, locations and type of outliers in arma processes
outidentify
performs one iteration of Wei's iterative procedure to identify impact, locations and type of outliers in arma processesoutidentify(x, object, alpha = 0.05, robust = FALSE)
x
: vector, the time seriesobject
: output of a model fit with the function arima (from stats)alpha
: the level of the tests for deciding which value is to be considered an outlierrobust
: logical, should the standard error be computed robustly?out list with elements - outlier: matrix with time index (ind), type of outlier (1 = AO, 2 = IO) and value of test statistic (lambda)
data(SPRUCE) out <- arima(SPRUCE,order=c(2,0,0)) out2 <- outidentify(SPRUCE,out,alpha=0.05, robust = FALSE)
Useful links