Multivariate Covariance Generalized Linear Models
Project description
Multivariate Covariance Generalized Linear Models
https://pypi.org/project/mcglm/
The mcglm package brings to python language one of the most powerful extensions to GLMs(Nelder, Wedderburn; 1972), the Multivariate Covariance Generalized Linear Models(Bonat, Jørgensen; 2016).
The GLMs have consolidated as a unified statistical model for analyzing non-gaussian independent data throughout the years. Notwithstanding enhancements to Linear Regression Models(Gauss), some key assumptions, such as the independence of components in the response, each element of the target belonging to an exponential dispersion family maintains.
MCGLM aims to expand the GLMs by allowing fitting on a wide variety of inner-dependent datasets, such as spatial and longitudinal, and supplant the exponential dispersion family output by second-moment assumptions(Wedderburn; 1974)
https://jeancmaia.github.io/posts/tutorial-mcglm/tutorial_mcglm.html
The mcglm python package follows the standard pattern of the statsmodels library and aims to be another API on the package. Therefore, Python machine learning practitioners will be very familiar with this new statistical model.
To install this package, use
pip install mcglm
Tutorial MCGLM instills on the library usage by a wide-variety of examples(https://jeancmaia.github.io/posts/tutorial-mcglm/tutorial_mcglm.html). The following code snippet shows the model fitting for a Gaussian regression analysis.
modelresults = MCGLM(endog=y, exog=X).fit()
modelresults.summary()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.