Scipy docs gives a distribution form used exponentially like:
expon.pdf(x) = lambda * exp(- lambda*x)
However, the matching function accepts:
fit(data, loc=0, scale=1)
And the rvs function accepts:
rvs(loc=0, scale=1, size=1)
Question 1: Why an extraneous location variable? I know that exhibitors are only concrete forms of a more general distribution (gamma), but why do they include raw information? Even gamma does not have a location parameter.
Question 2: Is the output a room (...) in the same order as the input variable. By this I mean If I do this:
t = fit([....]) , t will have the form t[0], t[1]
Should I interpret t [0] as a form and t 1 as a scale.
Is this supported for all distributions?
How about gamma:
fit(data, a, loc=0, scale=1)
source share