This calculator is useful for testing the means of several groups. The statistical model is called an Analysis of Variance, or ANOVA model. This calculator is for the particular situation where we wish to make pairwise comparisons between groups. That is, we compare two groups at a time, and we make several of these comparisons.
For example, suppose we want to compare the means of three groups called foo, bar, and ack. These groups may represent groups of people that have been exposed to three different medical procedures, marketing schemes, etc. The complete list of pairwise comparisons are foo vs. bar, foo vs. ack, and bar vs. ack.
In more general terms, we may have $k$ groups, meaning there are a total of $K\equiv\binom{k}{2}=k(k-1)/2$ possible pairwise comparisons. When we test $\tau\le K$ of these pairwise comparisons, we have $\tau$ hypotheses of the form
This calculator uses the following formulas to compute sample size and power, respectively:
$$n_A=\left(\sigma_A^2+\sigma_B^2/\kappa\right)\left(\frac{z_{1-\alpha/\tau}+z_{1-\beta}}{\mu_A-\mu_B}\right)^2$$
$$n_B=\kappa n_A$$
$$1-\beta=\Phi\left(\frac{|\mu_A-\mu_B|\sqrt{n_A}}{\sqrt{\sigma_A^2+\sigma_B^2/\kappa}}-z_{1-\alpha/\tau}\right)$$
where
R code to implement these functions:
muA=132.86 muB=127.44 kappa=2 sdA=15.34 sdB=18.23 tau=1 alpha=0.05 beta=0.20 (nA=(sdA^2+sdB^2/kappa)*((qnorm(1-alpha/tau)+qnorm(1-beta))/(muA-muB))^2) ceiling(nA) # 85 z=(muA-muB)/sqrt(sdA^2+sdB^2/kappa)*sqrt(nA) (Power=pnorm(z-qnorm(1-alpha/tau))) ## Note: Rosner example on p.303 is for 2-sided test. ## These formulas give the numbers in that example ## after dividing alpha by 2, to get 2-sided alpha. ## Also, we don't yet have an example using tau!=1. ## If you'd like to contribute one please let us know!
Rosner B. 2010. Fundamentals of Biostatistics. 7th Ed. Brooks/Cole. page 302 and 303.
Chow S, Shao J, Wang H. 2008. Sample Size Calculations in Clinical Research. 2nd Ed. Chapman & Hall/CRC Biostatistics Series. page 58.