fpeaut | R Documentation |
Perform FPE(Final Prediction Error) computation for one-dimensional AR model.
fpeaut(y, max.order = NULL)
y |
a univariate time series. |
max.order |
upper limit of model order. Default is
|
The AR model is given by
y(t) = a(1)y(t-1) + .... + a(p)y(t-p) + u(t)
where p
is AR order and u(t)
is a zero mean white noise.
ordermin |
order of minimum FPE. |
best.ar |
AR coefficients with minimum FPE. |
sigma2m |
= |
fpemin |
minimum FPE. |
rfpemin |
minimum RFPE. |
ofpe |
OFPE. |
arcoef |
AR coefficients. |
sigma2 |
|
fpe |
FPE (Final Prediction Error). |
rfpe |
RFPE. |
parcor |
partial correlation. |
chi2 |
chi-squared. |
H.Akaike and T.Nakagawa (1988) Statistical Analysis and Control of Dynamic Systems. Kluwer Academic publishers.
y <- arima.sim(list(order=c(2,0,0), ar=c(0.64,-0.8)), n = 200)
fpeaut(y, max.order = 20)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.