meanvarcheck {pcts} | R Documentation |
Asymptotic covariance matrix of periodic mean
Description
Asymptotic covariance matrix of periodic mean.
Usage
meanvarcheck(parmodel, n)
meancovmat(parmodel, n, cor = FALSE, result = "var")
Arguments
parmodel |
a periodic model. |
n |
number of observations (TODO: need clarification here). |
cor |
if |
result |
if |
Details
Computes asymptotic covariance or correlation matrix of the periodic means.
Value
if result = "var"
a matrix,
otherwise a vector
Author(s)
Georgi N. Boshnakov
See Also
Examples
x <- arima.sim(list(ar=0.9), n=1000)
proba1 <- fitPM(c(3,2,2,2), x)
meancovmat(proba1, 100)
meancovmat(proba1, 100, cor = TRUE)
meancovmat(proba1, 100, result = "")
meancovmat(proba1, 100, cor = TRUE, result = "")
meanvarcheck(proba1, 100)
[Package pcts version 0.15.7 Index]