Hide keyboard shortcuts

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. 

4 

5These families are described in 

6 

7 P. McCullagh and J. A. Nelder. "Generalized linear models." 

8 Monographs on Statistics and Applied Probability. 

9 Chapman & Hall, London, 1983. 

10 

11""" 

12 

13from statsmodels.genmod.families import links 

14from .family import Gaussian, Family, Poisson, Gamma, \ 

15 InverseGaussian, Binomial, NegativeBinomial, Tweedie 

16from statsmodels.tools._testing import PytestTester 

17 

18__all__ = ['test', 'links', 'Family', 'Gamma', 'Gaussian', 'Poisson', 

19 'InverseGaussian', 'Binomial', 'NegativeBinomial', 'Tweedie'] 

20 

21test = PytestTester()