Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

ARIMA

Simulation of an ARIMA(p,0,q) surrogate for a given time series x


Description

It simulates an ARIMA(p,0,q) surrogate for the time series x analyzed by wavelet transformation using either function analyze.wavelet or function analyze.coherency. A set of surrogates is used for significance assessment to test the hypothesis of equal periodic components.

Simulation is subject to parameters concerning: AR and MA order, an indicator of mean/intercept term inclusion, a boosting factor which is applied to the residual standard deviation, an indicator to trim the data according to the given trimming proportion (i.e. to restrict them to the interval between the lower and upper quantile corresponding to the given probability).

Usage

ARIMA(x, params = 
      list(ARIMA = list(p = 1, q = 1, 
                        include.mean = TRUE, sd.fac = 1, 
                        trim = FALSE, trim.prop = 0.01)))

Arguments

x

the given time series

params

a list containing an assignment of parameter values to ARIMA. Default: NULL.

Default includes:

ARIMA = list(...), a list of six elements:

p : AR order.
Default: 1.
q : MA order.
Default: 1.
include.mean : Include a mean/intercept term?
Default: TRUE.
sd.fac : magnification factor to boost the
residual standard deviation.
Default: 1.
trim : Simulate trimmed data?
Default: FALSE.
trim.prop : high/low trimming proportion.
Default: 0.01.

Details

Basics of model estimation and simulation are provided by application of the R functions arima and arima.sim.

Value

A surrogate series for x is returned which has the same length and properties according to estimates resulting from the given ARIMA setting.

Author(s)

Angi Roesch and Harald Schmidbauer

See Also


WaveletComp

Computational Wavelet Analysis

v1.1
GPL-2
Authors
Angi Roesch <angi@angi-stat.com> and Harald Schmidbauer <harald@hs-stat.com>
Initial release
2018-03-18

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.