Description Usage Arguments Author(s) See Also Examples
An implementation of the algorithm for simulation of observations from an arbitrary discrete distribution is provided here.
1 | ST_Ordered(N, x, p_x)
|
N |
number of required random observations |
x |
the possible values of the RV |
p_x |
the probability vector associated with x |
Prabhanjan N. Tattar
sample
1 2 3 4 | N <- 1e4
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)
table(ST_Ordered(N, x, p_x))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.