Simulating Random Observations from an Arbitrary Distribution (ordered probabilities)
Simulation observations from an arbitrary discrete distribution with probabilities arranged in desending/ascending order.
ST_Unordered(N, x, p_x)
N
: number of required random observationsx
: the possible values of the RVp_x
: the probability vector associated with xPrabhanjan N. Tattar
sample
N <- 1e2 x <- 1:10 p_x <- c(0.05,0.17,0.02,0.14,0.11,0.06,0.05,0.04,0.17,0.19) ST_Unordered(N,x,p_x)
Useful links