Is it possible to generate distributions in R for which the Mean, SD, skew and kurtosis are known? So far it appears the best route would be to create random numbers and transform them accordingly. If there is a package tailored to generating specific distributions which could be adapted, I have not yet found it. Thanks
feedback
|
|
There is a Johnson distribution in the SuppDists package. Johnson will give you a distribution that matches either moments or quantiles. Others comments are correct that 4 moments does not a distribution make. But Johnson will certainly try. Here's an example of fitting a Johnson to some sample data:
The final plot looks like this:
You can see a bit of the issue that others point out about how 4 moments do not fully capture a distribution. Good luck! EDIT
As Hadley pointed out in the comments, the Johnson fit looks off. I did a quick test and fit the Johnson distribution using
Which produces the following:
Anyone have any ideas why Johnson seems biased when fit using moments? | |||||
feedback
|
|
This is an interesting question, which doesn't really have a good solution. I presume that even though you don't know the other moments, you have an idea of what the distribution should look like. For example, it's unimodal. There a few different ways of tackling this problem:
| |||
|
feedback
|
|
Those parameters don't actually fully define a distribution. For that you need a density or equivalently a distribution function. | |||
|
feedback
|
|
As @David and @Carl wrote above, there are several packages dedicated to generate different distributions, see e.g. the Probability distributions Task View on CRAN. If you are interested in the theory (how to draw a sample of numbers fitting to a specific distribution with the given parameters) then just look for the appropriate formulas, e.g. see the gamma distribution on Wiki, and make up a simple quality system with the provided parameters to compute scale and shape. See a concrete example here, where I computed the alpha and beta parameters of a required beta distribution based on mean and standard deviation. | |||
|
feedback
|
|
Have you tried searching CRAN? I'm not exactly sure what you're looking for (as David's answer points out, I don't think you've specified enough), but I got several hits that looked like a useful starting places with "generate distribution skew kurtosis" as keywords. | |||
feedback
|

