I am interested in frequency distributions that are not normally distributed. If I have a frequency distributions table which is not normally distributed. Is there a function or package that will identify the type of distribution for me?
|
|
|
You can use the Edit: For instance a normal distribution may look like a poisson distribution. Fitting is in my oppinion only useful if you have enough random variables. Otherwise just draw variables from your data if you need to |
|||
|
|
|
You can always try to test whether a distribution is adequate for your data with QQ plot. If you have data that is dynamic, I would suggest that you use ECDF (Empirical Cumulative Distribution Function) which will give you more precise distributions as your data grows. You can use ECDF in R with the ecdf() function. |
|||
|
|
