I have a generated a set of random values which I expect to fit in Beta Distribution.
Is there any library which provides function to calculate betafit or uniformfit Just like it is available in Matlab ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Thanks. I also got this
http://www.meta-numerics.net/Documentation/html/8ff81058-d821-cfa0-eccf-b0c21d66a0a3.htm
Meta.Numerics also contains some classes which solves my problem.
There is a static function FitToSample() in each distribution. It calculates the parameters of the distribution.
For example, BetaDistribution.FitToSample() calculates me the alpha and beta values for the input data.
But how to check whether the data actually fits the beta distribution ?
If anyone of you have used this, can you please tell me how to verify whether the input data fits the distribution( ex : exponential, beta).