linearmodels.panel.covariance.DriscollKraay¶
-
class linearmodels.panel.covariance.DriscollKraay(y: ndarray, x: ndarray, params: ndarray, entity_ids: ndarray, time_ids: ndarray, *, debiased: bool =
False
, extra_df: int =0
, kernel: str | None =None
, bandwidth: float | None =None
)[source]¶ Driscoll-Kraay heteroskedasticity-autocorrelation robust covariance estimation
- Parameters:¶
- y: ndarray¶
(entity x time) by 1 stacked array of dependent
- x: ndarray¶
(entity x time) by variables stacked array of exogenous
- params: ndarray¶
variables by 1 array of estimated model parameters
- entity_ids: ndarray¶
(entity x time) by 1 stacked array of entity ids
- time_ids: ndarray¶
(entity x time) by 1 stacked array of time ids
- debiased: bool =
False
¶ Flag indicating whether to debias the estimator
- extra_df: int =
0
¶ Additional degrees of freedom consumed by models beyond the number of columns in x, e.g., fixed effects. Covariance estimators are always adjusted for extra_df irrespective of the setting of debiased.
- kernel: str | None =
None
¶ Name of one of the supported kernels. If None, uses the Newey-West kernel.
- bandwidth: float | None =
None
¶ Non-negative integer to use as bandwidth. If not provided a rule-of- thumb value is used.
Notes
Supported kernels:
“bartlett”, “newey-west” - Bartlett’s kernel
“quadratic-spectral”, “qs”, “andrews” - Quadratic-Spectral Kernel
“parzen”, “gallant” - Parzen kernel
Bandwidth is set to the common value for the Bartlett kernel if not provided.
The estimator of the covariance is
where
and
where df is
extra_df
and n-df is replace by n-df-k ifdebiased
isTrue
. is the kernel weighting function.Methods
Covariance calculation deferred until executed
Properties
Estimated covariance
Model residuals
Covariance estimator name
Error variance