You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
819 B
Python
25 lines
819 B
Python
#
|
|
# Author: Travis Oliphant 2002-2011 with contributions from
|
|
# SciPy Developers 2004-2011
|
|
#
|
|
# NOTE: To look at history using `git blame`, use `git blame -M -C -C`
|
|
# instead of `git blame -Lxxx,+x`.
|
|
#
|
|
from __future__ import division, print_function, absolute_import
|
|
|
|
from ._distn_infrastructure import (entropy, rv_discrete, rv_continuous,
|
|
rv_frozen)
|
|
|
|
from . import _continuous_distns
|
|
from . import _discrete_distns
|
|
|
|
from ._continuous_distns import *
|
|
from ._discrete_distns import *
|
|
|
|
# For backwards compatibility e.g. pymc expects distributions.__all__.
|
|
__all__ = ['entropy', 'rv_discrete', 'rv_continuous', 'rv_histogram']
|
|
|
|
# Add only the distribution names, not the *_gen names.
|
|
__all__ += _continuous_distns._distn_names
|
|
__all__ += _discrete_distns._distn_names
|