Learn R Programming

sanon (version 1.2)

vcov.sanon: Calculate Variance-Covariance Matrix for a Fitted Model Object

Description

Returns the variance-covariance matrix of the main parameters of a fitted model object.

Usage

## S3 method for class 'sanon':
vcov(object, ...)

Arguments

object
an object of class "sanon", usually, a result of a call to sanon
...
further arguments passed to or from other methods.

Value

  • Coefficients extracted from the model object object.

Details

This is a generic function.

Examples

Run this code
##### Example 3.1 Randomized Clinical Trial of Chronic Pain #####
data(cpain)
out1 = sanon(response ~ grp(treat, ref="placebo") + strt(center) + strt(diagnosis), data=cpain)
vcov(out1)

##### Example 3.2 Randomized Clinical Trial of Respiratory Disorder #####
data(resp)
P = rbind(rep(0, 4), diag(4), rep(0, 4))
out23 = sanon(cbind(baseline, visit1, visit2, visit3, visit4) ~ grp(treatment, ref="P")
 + strt(center) + strt(sex) + covar(age), data=resp, P=P)
# each four visits
vcov(out23)

Run the code above in your browser using DataLab