estimate_gmwmx {gmwmx} | R Documentation |
Estimate a stochastic model in a two-steps procedure using the GMWMX estimator.
Description
Estimate a stochastic model in a two-steps procedure using the GMWMX estimator.
Usage
estimate_gmwmx(
x,
theta_0,
n_seasonal = 1,
model_string,
method = "L-BFGS-B",
maxit = 1e+06,
ci = FALSE,
k_iter = 1
)
Arguments
x |
A |
theta_0 |
A |
n_seasonal |
An |
model_string |
A |
method |
A |
maxit |
An |
ci |
A |
k_iter |
An |
Value
A gnsstsmodel
object.
Examples
## 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)
[Package gmwmx version 1.0.3 Index]