| vcov.trim | R Documentation |
Extract variance-covariance matrix from TRIM output
## S3 method for class 'trim'
vcov(object, which = c("imputed", "fitted"), ...)
object |
TRIM output structure (i.e., output of a call to |
which |
|
... |
Arguments to pass to or from other methods (currently unused; included for consistency with |
a J x J matrix, where J is the number of years (or time-points).
Other analyses:
coef.trim(),
confint.trim(),
gof(),
index(),
now_what(),
overall(),
overdispersion(),
plot.trim.index(),
plot.trim.overall(),
plot.trim.smooth(),
results(),
serial_correlation(),
summary.trim(),
totals(),
trendlines(),
trim(),
wald()
data(skylark)
z <- trim(count ~ site + time, data=skylark, model=3);
totals(z)
vcv1 <- vcov(z) # Use imputed data
vcv2 <- vcov(z,"fitted") # Use fitted data
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.