statsmodels.stats.multivariate.CovTestResult#
- class statsmodels.stats.multivariate.CovTestResult(statistic, pvalue, df, distribution, null, cov_null=None)[source]#
Result of
test_cov,test_cov_spherical,test_cov_diagonalandtest_cov_blockdiagonal.- Parameters:
- statistic
float Chi-square test statistic.
- pvalue
float p-value based on the chi-square distribution.
- df
float Degrees of freedom of the chi-square distribution.
- distribution
str Name of the reference distribution used for pvalue,
"chi2".- null
str Short description of the null hypothesis being tested.
- cov_null
ndarrayorNone Covariance matrix under the null hypothesis. Only set by
test_cov, otherwise None.
- statistic
- Attributes:
- cov_null
- df
- distribution
- null
- pvalue
- statistic
Notes
Unpacks as
statistic, pvalue = result. Other values are only accessible using attributes.Methods
Properties