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:
statisticfloat

Test statistic of the F-test version, same value as statistic_f.

pvaluefloat

p-value of the F-test version, same value as pvalue_f.

statistic_basefloat

Box’s M statistic before the chi-square or F approximation correction factors are applied.

statistic_chi2float

Test statistic of the chi-square approximation.

pvalue_chi2float

p-value based on the chi-square approximation.

df_chi2float

Degrees of freedom of the chi-square approximation.

distribution_chi2str

Name of the chi-square reference distribution, "chi2".

statistic_ffloat

Test statistic of the F approximation, same value as statistic.

pvalue_ffloat

p-value based on the F approximation, same value as pvalue.

df_ftuple

Numerator and denominator degrees of freedom of the F approximation.

distribution_fstr

Name of the F reference distribution, "F".

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