| discint {LearnBayes} | R Documentation |
Computes a highest probability interval for a discrete probability distribution
discint(dist, prob)
dist |
probability distribution written as a matrix where the first column contain the values and the second column the probabilities |
prob |
probability content of interest |
prob |
exact probability content of interval |
set |
set of values of the probability interval |
Jim Albert
x=0:10 probs=dbinom(x,size=10,prob=.3) dist=cbind(x,probs) pcontent=.8 discint(dist,pcontent)