statsmodels.multivariate.multivariate_ols.MultivariateTestResults¶
- class statsmodels.multivariate.multivariate_ols.MultivariateTestResults(results, endog_names, exog_names)[source]¶
Multivariate test results class
Returned by mv_test method of _MultivariateOLSResults class
- Parameters:¶
- results¶
Each hypothesis is contained in a single`key`. Each test must have the following keys:
‘stat’ - contains the multivariate test results
‘contrast_L’ - contains the contrast_L matrix
‘transform_M’ - contains the transform_M matrix
‘constant_C’ - contains the constant_C matrix
‘H’ - contains an intermediate Hypothesis matrix, or the between groups sums of squares and cross-products matrix, corresponding to the numerator of the univariate F test.
‘E’ - contains an intermediate Error matrix, corresponding to the denominator of the univariate F test. The Hypotheses and Error matrices can be used to calculate the same test statistics in ‘stat’, as well as to calculate the discriminant function (canonical correlates) from the eigenvectors of inv(E)H.
Methods
summary([show_contrast_L, show_transform_M, ...])Summary of test results
Properties
Return results as a multiindex dataframe