statsmodels.stats.multivariate.HotellingResult#
- class statsmodels.stats.multivariate.HotellingResult(statistic, pvalue, df, t2, distribution)[source]#
Result of
test_mvmeanandtest_mvmean_2indep.- Parameters:
- statistic
float Hotelling’s T-squared test statistic, rescaled to be F-distributed.
- pvalue
float p-value based on the F distribution.
- df
tuple Numerator and denominator degrees of freedom of the F distribution.
- t2
float Hotelling’s T-squared statistic.
- distribution
str Name of the reference distribution used for pvalue,
"F".
- statistic
- Attributes:
- df
- distribution
- pvalue
- statistic
- t2
Notes
Unpacks as
statistic, pvalue = result. Other values are only accessible using attributes.Methods
Properties