dice {clttools} | R Documentation |
Mean and probability of rolling fair or loaded dice
dice(n, prob = NULL)
n |
number of trials |
prob |
probability assigned to each possible outcome |
The default probabilty equals to 1/n. All the assigned probabilites must between 0 and 1.
Mean value and corresponding probabilities for all possible outcomes.
dice(n = 4) dice(2, c(0.1, 0.2, 0.2, 0.1, 0.3, 0.1))