Hi Laurent, On 2012-06-13, Laurent <[email protected]> wrote: > Among other it contains : > > expon.pdf(x) = exp(-x) for x >= 0. > scale = 1.0 / lambda > > While the *true* text is > > expon.pdf(x) = lambda * exp(- lambda*x)
The problem appears in Python's inspect module as well. Do sage: from scipy import stats sage: import inspect sage: print inspect.getdoc(stats.expon) and you will see ... Notes ----- Exponential distribution expon.pdf(x) = exp(-x) for x >= 0. scale = 1.0 / lambda ... Best regards, Simon -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
