Learn R Programming

LearnBayes (version 2.15.2)

discint: Highest probability interval for a discrete distribution

Description

Computes a highest probability interval for a discrete probability distribution

Usage

discint(dist, prob)

Value

prob

exact probability content of interval

set

set of values of the probability interval

Arguments

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

Author

Jim Albert

Examples

Run this code
x=0:10
probs=dbinom(x,size=10,prob=.3)
dist=cbind(x,probs)
pcontent=.8
discint(dist,pcontent)

Run the code above in your browser using DataLab