sfarima.est {DCSmooth} | R Documentation |
Estimation of a SFARIMA-process
Description
Parametric Estimation of a -process on a
lattice.
Usage
sfarima.est(Y, model_order = list(ar = c(1, 1), ma = c(1, 1)))
Arguments
Y |
A numeric matrix that contains the demeaned observations of the random field or functional time-series. |
model_order |
A list containing the orders of the SFARIMA model in the
form |
Value
The function returns an object of class "sfarima"
including
Y | The matrix of observations, inherited from input. |
innov The estimated innovations. |
|
model | The estimated model consisting of the coefficient
matrices ar and ma , the estimated long memory parameters
d and standard deviation of innovations sigma . |
stnry | An logical variable indicating whether the estimated model is stationary. |
Details
The MA- and AR-parameters as well as the long-memory parameters
of a
SFARIMA process are estimated by minimization of the residual sum of squares
RSS. Lag-orders of are given by
, where
are
the lags over the rows and
are the lags over the
columns. The estimated process is based on the (separable) model
, where
.
See Also
Examples
# See vignette("DCSmooth") for examples and explanation
## simulation of SFARIMA process
ma <- matrix(c(1, 0.2, 0.4, 0.1), nrow = 2, ncol = 2)
ar <- matrix(c(1, 0.5, -0.1, 0.1), nrow = 2, ncol = 2)
d <- c(0.1, 0.1)
sigma <- 0.5
sfarima_model <- list(ar = ar, ma = ma, d = d, sigma = sigma)
sfarima_sim <- sfarima.sim(50, 50, model = sfarima_model)
## estimation of SFARIMA process
sfarima.est(sfarima_sim$Y)$model
sfarima.est(sfarima_sim$Y,
model_order = list(ar = c(1, 1), ma = c(0, 0)))$model
[Package DCSmooth version 1.1.2 Index]