
14.6 Paired Tables: McNemar’s Test 557
orexactu = tu/(1-tu);
exactorci = [orexactl, orexactu]
%--------- approximate prob ---------
phat = B/(B+C);
pl = phat - norminv(0.975)
*
sqrt(phat
*
(1-phat)/(B+C)) - 1/(2
*
B+2
*
C);
pu = phat + norminv(0.975)
*
sqrt(phat
*
(1-phat)/(B+C)) + 1/(2
*
B+2
*
C);
intor = [pl/(1-pl), pu/(1-pu)]
Example 14.11. Split-Mouth Trials for Dental Sealants. Randomized split-
mouth trials (RSM) are frequently used in dentistry to examine the effective-
ness of preventive interventions that impact individual teeth as opposed to the
whole mouth. For example, to examine the effectiveness of dental sealants in
preventing caries, a permanent first molar is randomly chosen for the inter-
vention while its contralateral tooth serves as the control. Because the control
and test teeth are subject to the same oral environment, this design controls
for many confounding factors such as diet, tooth morphology, and oral hygiene
habits. Thus differences in outcomes between test and control teeth are likely
attributable to the treatment. Because of this pairing, adequate power may be
achieved with a smaller sample size than if the teeth were independent.
Forss and Halme (1998) report results of a split-mouth study that started
in 1988 with 166 children, with the goal of assessing tooth-sealant materials.
Participants were children from Finland, aged 5 to 14 years (mean age 11
years). To be included in the study, children had to have a contralateral pair
of newly erupted, sound, unsealed permanent first or second molar teeth.
Interventions on the occlusal surfaces of sound first or second permanent
molars involved glass ionomer Fuji III sealant as a treatment and third-
generation, resin-based, light-cured Delton sealant as control. The results are
recorded at the 7-year follow-up involving 97 children (the dropout rate was
42%).
Control (Resin)
Caries No Caries Total
Treatment (Fuji III)
Caries
8 15 23
No Caries
8 66 74
Total 16 81 97
Risk differences and risk and odds ratios with confidence intervals are ob-
tained by the MATLAB program
mcnemart.m. Several approaches to con-
fidence intervals (exact, approximate RGB, approximate Miettinen) are pre-
sented. The odds ratio is 1.8750, the exact 95% confidence interval for OR is
[0.7462, 5.1064], and three approximations are
miettint = [0.7003, 5.0198],
rgbint = [0.7950, 4.4224], and intor = [0.7724, 6.6080].
The complete output from
mcnemart.m is
mcnemart([8, 15; 8, 66])
%
%diffp1p2 = 0.0722