covjmcm_acd {varjmcm} | R Documentation |
covjmcm_acd
calculates the estimation of the covariance of estimated parameters in a ACD model using
the explicit formula, which is the inverse of the estimated Fisher's information matrix.
covjmcm_acd(object)
object |
a fitted joint mean-covariance model of class "jmcmMod", returned by the function |
an estimated covariance matrix of the estimated parameters in a ACD model.
[1] M. Maadooliat, M. Pourahmadi and J. Z. Huang, "Robust estimation of the correlation matrix of longitudinal data", Statistics and Computing 23, 17-28, (2013).
covjmcm
, covjmcm_mcd
, and covjmcm_hpc
##This may take more than 5s.
cattleA <- cattle[cattle$group=='A', ]
fit.acd <- jmcm(weight|id|I(ceiling(day/14+1))~1|1,
data = cattleA, cov.method = "acd",
triple = c(8,3,4))
cov.acd <- covjmcm_acd(fit.acd)