statsmodels.multivariate.manova.MANOVA¶
- class statsmodels.multivariate.manova.MANOVA(endog, exog, missing='none', hasconst=None, **kwargs)[source]¶
Multivariate Analysis of Variance
The implementation of MANOVA is based on multivariate regression and does not assume that the explanatory variables are categorical. Any type of variables as in regression is allowed.
- Parameters:
- endognumpy:array_like
Dependent variables. A nobs x k_endog array where nobs is the number of observations and k_endog is the number of dependent variables.
- exognumpy:array_like
Independent variables. A nobs x k_exog array where nobs is the number of observations and k_exog is the number of independent variables. An intercept is not included by default and should be added by the user. Models specified using a formula include an intercept by default.
Notes
MANOVA is used though the mv_test function, and fit is not used.
The
from_formula
interface is the recommended method to specify a model and simplifies testing without needing to manually configure the contrast matrices.References
- Attributes:
- endog
ndarray
See Parameters.
- exog
ndarray
See Parameters.
- endog
Methods
fit
()Fit a model to data.
from_formula
(formula, data[, subset, drop_cols])Create a Model from a formula and dataframe.
mv_test
([hypotheses])Linear hypotheses testing
predict
(params[, exog])After a model has been fit predict returns the fitted values.
Properties
Names of endogenous variables.
Names of exogenous variables.