| Server IP : 217.160.0.212 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.51-i1-ampere #1196 SMP Fri Sep 11 20:43:55 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/scipy/stats/ |
Upload File : |
# # 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 ._distn_infrastructure import (rv_discrete, rv_continuous, rv_frozen) from . import _continuous_distns from . import _discrete_distns from ._continuous_distns import * from ._levy_stable import levy_stable from ._discrete_distns import * from ._entropy import entropy # For backwards compatibility e.g. pymc expects distributions.__all__. __all__ = ['rv_discrete', 'rv_continuous', 'rv_histogram', 'entropy'] # Add only the distribution names, not the *_gen names. __all__ += _continuous_distns._distn_names __all__ += ['levy_stable'] __all__ += _discrete_distns._distn_names