where is the binomial coefficient, explained in the Binomial Distribution. The Negative Binomial models the number of successes in a sequence of independent and identically distributed Bernoulli Trials (coinflips) before a specified (non-random) number of failures (denoted r) occurs.
Consequently, the Geometric Distribution is a special case of the Negative Binomial distribution with .
To the right, you can see Probability Mass Functions for different values of and
For a more thorough walkthrough of the distribution check out the YouTube video Introduction to the Negative Binomial Distribution by JbStatistics.




Negative Binomial SAS Code Example
Below, I have written a small SAS program that lets you set
%let n=10; %let p=0.5; data negbin_PMF; do k=1 to 10; pmf=pdf('negbinomial', &n, &p, k); output; end; run; /* Draw PMF Curves */ title "Negative Binomial Probability Mass Function"; title2 "For Different n=&n, and p=&p"; proc sgplot data=negbin_PMF noautolegend; series x=k y=pmf / markers lineattrs=(thickness=2) markerattrs=(size=10 symbol=circlefilled); xaxis values=(1 to 10) labelattrs=(size=12 weight=Bold); yaxis display=(nolabel); run; title; |
The negative binomial distribution models count data and is often used in cases where the variance is much greater than the mean. Consequently, these are the cases where the Poisson distribution fails.
Finally, I write about how to fit the negative binomial distribution in the blog postĀ Fit Poisson and Negative Binomial Distribution in SAS.