I need to find an example of an asymetric distribution with similar kurtosis to the normal distribution, and generate a sample in R.
I've already chosen the 4 density of Marron and Wand as an example of a symetric distribution with different kurtosis than the normal distribution, but I coudn't find the former.
Thank you!
Using the example from Wikipedia (mentioned in a Comment), here is a simulation of a million observations of $Y = (X - E(X))/SD(X),$ where $X \sim \mathsf{Binom}(n = 10, p = .5+\sqrt{1/12}).$ By standardizing $X,$ we make the kurtosis of $Y$ be $E(Y^4) = 3,$ which matches the kurtosis of a normal distribution.
Binomial distributions are easy to simulate. In R statistical software the function
rbinomsamples from a binomial distribution according to designated parameters. With a million iterations one can expect two digits of accuracy.I will leave it to you to verify analytically, perhaps using moment generating functions, that Wikipedia's assertion about the kurtosis of this binomial distribution is precisely correct.