VARFIMA.est {LongMemoryTS} | R Documentation |
Maximum likelihood estimation of a VARFIMA(1,1) in final equations form.
Description
VARFIMA.est
returns the maximum likelihood estimate of the parameter vector of a VARFIMA(1,1) in final equations form.
Usage
VARFIMA.est(data, approx = 100, split = 1, rep = FALSE)
Arguments
data |
data matrix with T observations of q-dimensional process. |
approx |
order of the AR-approximation that is supposed to be used. Default is |
split |
to increase the speed the sample can be divided in |
rep |
is passed to |
Details
add details here.
References
Lutkepohl, H. (2007): New introduction to multiple time series analysis. Springer.
Examples
series<-VARFIMA.sim(phi=0.4, THETA=matrix(c(0,0,0,0),2,2),
d.vec=c(0.4,0.3), T=1000, Sigma=matrix(c(1,0.4,0.4,1),2,2))
ts.plot(series, col=1:2)
acf(series, lag=100)
VARFIMA.est(series, approx=100, rep=FALSE)
[Package LongMemoryTS version 0.1.0 Index]