Re: [SciPy-Dev] Proposal for some new fitting routines

On Thu, Aug 23, 2018 at 3:57 PM, Robert Lucente <rlucente@pipeline.com> wrote:
Except for the scipy.stats.distribution
I found
https://docs.scipy.org/doc/scipy/reference/stats.html
Does the ".distribution" meant in the generic sense?
both, it's the distributions that are in scipy stats, which also has more direct access scipy.stats has everything in the namespace, including the distributions. but `scipy.stats.distributions` was the original module and still has the distributions in the name space. The only reason to access that is when we want to use the distribution classes directly
import scipy.stats.distributions as sd dir(sd)
The continuous distributions have a fit method but not the discrete distributions. Josef
Humm
_______________________________________________ SciPy-Dev mailing list SciPy-Dev@python.org https://mail.python.org/mailman/listinfo/scipy-dev
participants (2)
-
josef.pktd@gmail.com
-
Robert Lucente