R: What's the best way to simulate an arbitrary univariate random variate if only its probability/density function is available?
|
|
Here is a (slow) implementation of the inverse cdf method when you are only given a density.
|
||
|
|
|
|
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. |
|||
|
|
|
|
You could use metropolis-hastings to get samples from the 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) |
||
|
|
