~ubuntu-branches/ubuntu/saucy/python-scipy/saucy

« back to all changes in this revision

Viewing changes to scipy/sandbox/models/family/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''
 
2
This module contains the one-parameter exponential families used
 
3
for fitting GLMs and GAMs.
 
4
 
 
5
These 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
 
 
13
from scipy.sandbox.models.family.family import Gaussian, Family, \
 
14
     Poisson, Gamma, InverseGaussian, Binomial
 
15
 
 
16