Extract the covariance matrix of a fitted model
Value
For skmle and kee, the estimated covariance matrix of the
regression coefficients. For kee_td, see time.
Examples
set.seed(1)
d <- sim_async_data(n = 120)
fit <- kee_async(d$y, d$x, y ~ x, id = id, time = time, h = 0.3)
vcov(fit)
#> (Intercept) x
#> (Intercept) 0.0099252555 -0.0002930651
#> x -0.0002930651 0.0082048377