Can anyone help me out in fitting a gamma distribution in python? Well, I've got some data : X and Y coordinates, and I want to find the gamma parameters that fit this distribution... In the Scipy doc, it turns out that a fit method actually exists but I don't know how to use it :s.. First, in which format the argument "data" must be, and how can I provide the second argument (the parameters) since that's what I'm looking for?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Generate some gamma data:
Here we fit the data to the gamma distribution:
|
|||||||||
|
|
If you want a long example including a discussion about estimating or fixing the support of the distribution, then you can find it in http://projects.scipy.org/scipy/ticket/832 and the linked mailing list message. Preliminary support to fix parameters, such as location, during fit has been added to the trunk version of scipy. |
|||
|
|