Return MLEs for shape, location, and scale parameters from data.
MLE stands for Maximum Likelihood Estimate. Starting estimates for the fit are given by input arguments; for any arguments not provided with starting estimates, self._fitstart(data) is called to generate such.
One can hold some parameters fixed to specific values by passing in keyword arguments f0..[is this supposed to be an ellipsis?] fn (for shape parameters) and floc and fscale (for location and scale parameters, respectively).
Parameters : | data : array_like
args : floats, optional
kwds : floats, optional
|
---|---|
Returns : | shape, loc, scale : tuple of floats
|