Title: | Minimum Distance Estimation in Autoregressive Model |
---|---|
Description: | Consider autoregressive model of order p where the distribution function of innovation is unknown, but innovations are independent and symmetrically distributed. The package contains a function named ARMDE which takes X (vector of n observations) and p (order of the model) as input argument and returns minimum distance estimator of the parameters in the model. |
Authors: | Jiwoong Kim [aut, cre] |
Maintainer: | Jiwoong Kim <[email protected]> |
License: | GPL-2 |
Version: | 1.0 |
Built: | 2024-12-06 06:48:56 UTC |
Source: | CRAN |
Performs minimum distance estimation in autoregressive model
ARMDE(X, AR_Order)
ARMDE(X, AR_Order)
X |
: vector of n observed value |
AR_Order |
: oder of the autoregressive model |
returns minimum distance estimators of the parameter in the autoregressive model
[1] Koul, H. L (1985). Minimum distance estimation in linear regression with unknown error distributions. Statist. Probab. Lett., 3 1-8.
[2] Koul, H. L (1986). Minimum distance estimation and goodness-of-fit tests in first-order autoregression. Ann. Statist., 14 1194-1213.
[3] Koul, H. L (2002). Weighted empirical process in nonlinear dynamic models. Springer, Berlin, Vol. 166
LRMDE
X <- rnorm(10, mean=0, sd=1) AR_Order <- 2 rhohat<-ARMDE(X,AR_Order)
X <- rnorm(10, mean=0, sd=1) AR_Order <- 2 rhohat<-ARMDE(X,AR_Order)