Learn R Programming

bbricks (version 0.1.4)

rCategorical: Random generation for Categorical distribution

Description

Generate random integer samples from a Categorical distribution. For a random variable x, the density function of categorical distribution is defined as $$prod_{k in 1:K} p_k^{I(x=k)}$$ Where K is the number of unique values.

Usage

rCategorical(n, p)

Arguments

n

integer, number of samples.

p

numeric, probabilities. length(p)=K.

Value

An integer vector of length n.

See Also

dCategorical

Examples

Run this code
# NOT RUN {
rCategorical(n=20,p=c(1,2))
# }

Run the code above in your browser using DataLab