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# 

2# Author: Travis Oliphant 2002-2011 with contributions from 

3# SciPy Developers 2004-2011 

4# 

5# NOTE: To look at history using `git blame`, use `git blame -M -C -C` 

6# instead of `git blame -Lxxx,+x`. 

7# 

8from ._distn_infrastructure import (entropy, rv_discrete, rv_continuous, 

9 rv_frozen) 

10 

11from . import _continuous_distns 

12from . import _discrete_distns 

13 

14from ._continuous_distns import * 

15from ._discrete_distns import * 

16 

17# For backwards compatibility e.g. pymc expects distributions.__all__. 

18__all__ = ['entropy', 'rv_discrete', 'rv_continuous', 'rv_histogram'] 

19 

20# Add only the distribution names, not the *_gen names. 

21__all__ += _continuous_distns._distn_names 

22__all__ += _discrete_distns._distn_names