# Generating 10 random draws from categorical distribution
# with k=3 categories occuring with equal probabilities
# parametrized using a vector
rcat(10, c(1/3, 1/3, 1/3))
# or with k=5 categories parametrized using a matrix of probabilities
# (generated from Dirichlet distribution)
p <- rdirichlet(10, c(1, 1, 1, 1, 1))
rcat(10, p)
x <- rcat(1e5, c(0.2, 0.4, 0.3, 0.1))
plot(prop.table(table(x)), type = "h")
lines(0:5, dcat(0:5, c(0.2, 0.4, 0.3, 0.1)), col = "red")
Run the code above in your browser using DataLab