linearmodels.iv.covariance.HomoskedasticCovariance

class linearmodels.iv.covariance.HomoskedasticCovariance(x: ndarray, y: ndarray, z: ndarray, params: ndarray, debiased: bool = False, kappa: int | float = 1)[source]

Covariance estimation for homoskedastic data

Parameters:
x: ndarray

Model regressors (nobs by nvar)

y: ndarray

Series modeled (nobs by 1)

z: ndarray

Instruments used for endogenous regressors (nobs by ninstr)

params: ndarray

Estimated model parameters (nvar by 1)

debiased: bool = False

Flag indicating whether to use a small-sample adjustment

kappa: int | float = 1

Value of kappa in k-class estimator

Notes

Covariance is estimated using

\[n^{-1} s^2 V^{-1}\]

where

\[s^2 = n^{-1} \sum_{i=1}^n \hat{\epsilon}_i^2\]

If debiased is true, then \(s^2\) is scaled by n / (n-k).

\[V = n^{-1} X'Z(Z'Z)^{-1}Z'X\]

where \(X\) is the matrix of variables included in the model and \(Z\) is the matrix of instruments, including exogenous regressors.

Methods

Properties

config

cov

Covariance of estimated parameters

debiased

Flag indicating if covariance is debiased

s

Score covariance estimate

s2

Estimated variance of residuals.