how can we generate random numbers using skew normal distribution in multivariate case?

link|improve this question

60% accept rate
I added some new tags to your question to be more specific. – daroczig Jan 18 '11 at 17:03
feedback

1 Answer

up vote 0 down vote accepted

Use the rsn function from the sn package in R (as I think from another question that R will work for you also):

rsn(n=100, location=1.256269, scale=1.605681, shape=5)

Will generate 100 (n) random numbers from a skew-normal distribution with the required location, scale and shape. Use higher sample size for plotting, e.g.:

hist(rsn(n=10000, location=1.256269, scale=1.605681, shape=5))

alt text

link|improve this answer
I have just noticed that you need random numbers from a multivariate skew-normal distribution. Use rmsn() function (also from the sn library) with appropriate parameters instead of the suggested rsn() function. – daroczig Jan 18 '11 at 17:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.