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

Description Usage Arguments Value Examples

View source: R/methods.R

Description

Calculate Variance-Covariance Matrix for a Fitted Model Object

Usage

1
2
3
4
5
## S3 method for class 'ivx'
vcov(object, complete = TRUE, ...)

## S3 method for class 'summary.ivx'
vcov(object, complete = TRUE, ...)

Arguments

object

a fitted ivx and summary.ivx object.

complete

logical indicating if the full variance-covariance matrix should be returned. When complete = TRUE, vcov() is compatible with coef().

...

additional arguments for method functions.

Value

A matrix of the estimated covariances between the parameter estimates of the model. This should have row and column names corresponding to the parameter names given by the coef method.

Examples

1
2
3
mod <- ivx(Ret ~ LTY, data = monthly)

vcov(mod)

ivx documentation built on Nov. 27, 2020, 5:09 p.m.