| fitACS | R Documentation |
Fits a parametric autocorrelation structure (ACS) to empirical ACF values using Nelder-Mead optimisation with MSE criterion.
fitACS(acf, ID, start = NULL, lag = NULL)
acf |
numeric vector of autocorrelation function values from lag 0 |
ID |
character; ACS identifier (e.g. |
start |
numeric vector of starting parameter values; if |
lag |
integer; number of lags to use; if |
An object of class "fitACS": a named list of fitted ACS
parameters with attributes ID and eACS (empirical ACS used
for fitting).
fitDist, plot.fitACS, acs
x <- arima.sim(model = list(ar = 0.8), n = 1000)
acsfit <- fitACS(acf(x, plot = FALSE)$acf, "weibull", c(1, 1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.