Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/statsmodels/genmod/families/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2This module contains the one-parameter exponential families used
3for fitting GLMs and GAMs.
5These families are described in
7 P. McCullagh and J. A. Nelder. "Generalized linear models."
8 Monographs on Statistics and Applied Probability.
9 Chapman & Hall, London, 1983.
11"""
13from statsmodels.genmod.families import links
14from .family import Gaussian, Family, Poisson, Gamma, \
15 InverseGaussian, Binomial, NegativeBinomial, Tweedie
16from statsmodels.tools._testing import PytestTester
18__all__ = ['test', 'links', 'Family', 'Gamma', 'Gaussian', 'Poisson',
19 'InverseGaussian', 'Binomial', 'NegativeBinomial', 'Tweedie']
21test = PytestTester()