R: What's the best way to simulate an arbitrary univariate random variate if only its probability/density function is available?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Here is a (slow) implementation of the inverse cdf method when you are only given a density.
|
|||
|
|
|
To clarify the "use Metropolis-Hastings" answer above: suppose ddist() is your probability density function something like:
Notes:
The classical approach to this problem is rejection sampling (see e.g. Press et al Numerical Recipes) |
|||
|
|
|
Use cumulative distribution function http://en.wikipedia.org/wiki/Cumulative%5Fdistribution%5Ffunction Then just use its inverse. Check here for better picture http://en.wikipedia.org/wiki/Normal%5Fdistribution That mean: pick random number from [0,1] and set as CDF, then check Value It is also called quantile function. |
||||
|
|
