Probability – Beta Distribution Analysis on Discrete Data

beta distributionprobability

Suppose that my data $y \in \{0,0.1,\ldots,1\}$. What are the consequences of modeling that data as continuous, i.e., as if $y \in [0,1]$, by using the beta distribution? Is there a version of the beta distribution that can account for this?

Best Answer

You could model the variable $10Y \sim {\rm BetaBinomial}(n = 10, a, b)$. Specifically, if $X \sim {\rm BetaBinomial}(n, a, b)$, then $$\Pr[X = x] = \frac{\Gamma (b+1) \Gamma (a+n) \Gamma (n+x) \Gamma (a+b-x)}{\Gamma (a) \Gamma (n) \Gamma (x+1) \Gamma (b-x+1) \Gamma (a+b+n)}.$$ The only restriction on the parameters $a,b$ is that they be positive; $n$ must be a nonnegative integer; and $x \in \{0, 1, \ldots, n\}$. This PMF has many nice properties: see http://en.wikipedia.org/wiki/Beta-binomial_distribution

Related Question