estimate_hector.Rd
Estimate a stochastic model based on the MLE and the Hector implementation.
estimate_hector(
x,
n_seasonal = 1,
model_string,
likelihood_method = "AmmarGrag",
cleanup = TRUE
)
A gnssts
object
An integer
specifying the number of seasonal component in the time series.
A string
specifying the model to be estimated.
A string
taking either value "FullCov" or "AmmarGrag" that specify the method for the Likelihood computation.
A boolean
specifying if the files created by the estimation procedure should be cleaned.
A gnsstsmodel
object.
if (FALSE) { # \dontrun{
cola = PBO_get_station(station_name = "COLA", column = "dE", time_range = c(51130, 52000))
fit_mle = estimate_hector(x = cola,
n_seasonal = 1,
model_string = "wn+matern")
} # }