statsmodels.stats.multivariate.CovOnewayResult#
- class statsmodels.stats.multivariate.CovOnewayResult(statistic, pvalue, statistic_base, statistic_chi2, pvalue_chi2, df_chi2, distribution_chi2, statistic_f, pvalue_f, df_f, distribution_f)[source]#
Result of
test_cov_oneway.- Parameters:
- statistic
float Test statistic of the F-test version, same value as statistic_f.
- pvalue
float p-value of the F-test version, same value as pvalue_f.
- statistic_base
float Box’s M statistic before the chi-square or F approximation correction factors are applied.
- statistic_chi2
float Test statistic of the chi-square approximation.
- pvalue_chi2
float p-value based on the chi-square approximation.
- df_chi2
float Degrees of freedom of the chi-square approximation.
- distribution_chi2
str Name of the chi-square reference distribution,
"chi2".- statistic_f
float Test statistic of the F approximation, same value as statistic.
- pvalue_f
float p-value based on the F approximation, same value as pvalue.
- df_f
tuple Numerator and denominator degrees of freedom of the F approximation.
- distribution_f
str Name of the F reference distribution,
"F".
- statistic
- Attributes:
- df_chi2
- df_f
- distribution_chi2
- distribution_f
- pvalue
- pvalue_chi2
- pvalue_f
- statistic
- statistic_base
- statistic_chi2
- statistic_f
Notes
Unpacks as
statistic, pvalue = result. Other values are only accessible using attributes.Methods
Properties