statsmodels.stats.multivariate.HotellingResult#

class statsmodels.stats.multivariate.HotellingResult(statistic, pvalue, df, t2, distribution)[source]#

Result of test_mvmean and test_mvmean_2indep.

Parameters:
statisticfloat

Hotelling’s T-squared test statistic, rescaled to be F-distributed.

pvaluefloat

p-value based on the F distribution.

dftuple

Numerator and denominator degrees of freedom of the F distribution.

t2float

Hotelling’s T-squared statistic.

distributionstr

Name of the reference distribution used for pvalue, "F".

Attributes:
df
distribution
pvalue
statistic
t2

Notes

Unpacks as statistic, pvalue = result. Other values are only accessible using attributes.

Methods

Properties