| estimate_gmwmx | R Documentation |
Estimate a stochastic model in a two-steps procedure using the GMWMX estimator.
estimate_gmwmx( x, theta_0, n_seasonal = 1, model_string, method = "L-BFGS-B", maxit = 1e+06, ci = FALSE, k_iter = 1 )
x |
A |
theta_0 |
A |
n_seasonal |
An |
model_string |
A |
method |
A |
maxit |
An |
ci |
A |
k_iter |
An |
A gnsstsmodel object.
## Not run:
data(cola)
fit_gmwmx = estimate_gmwmx(x = cola,
theta_0 = c(0.1,0.1,0.1,0.1),
n_seasonal = 1,
model_string = "wn+matern")
## End(Not run)