
MultinomCI(x, conf.level = 0.95, method = c("sisonglaz", "cplus1", "goodman"))
"sisonglaz"
, "cplus1"
, "goodman"
.
Method can be abbreviated. See details. Defaults to "sisonglaz"
.# Multinomial distribution with 3 classes, from which 79 samples
# were drawn: 23 of them belong to the first class, 12 to the
# second class and 44 to the third class. Punctual estimations
# of the probabilities from this sample would be 23/79, 12/79
# and 44/79 but we want to build 95% simultaneous confidence intervals
# for the true probabilities
MultinomCI(c(23,12,44), conf.level=0.95)
x <- c(35,74,22,69)
MultinomCI(x, method="goodman")
MultinomCI(x, method="sisonglaz")
MultinomCI(x, method="cplus1")
# compare to
BinomCI(x, n=sum(x))
Run the code above in your browser using DataLab