21  Comparing Means with Paired Samples

Here, we’ll consider the problem of estimating a confidence interval to describe the difference in population means (or medians) based on a comparison of two samples of quantitative data, gathered using a matched pairs design.

Specifically, we’ll use as our example the Lead in the Blood of Children study, described below.

21.1 Setup: Packages Used Here

In addition to the Love-boost.R script, we will also use the favstats function from the mosaic package.

21.2 Lead in the Blood of Children

One of the best ways to eliminate a source of variation and the errors of interpretation associated with it is through the use of matched pairs. Each subject in one group is matched as closely as possible by a subject in the other group. If a 45-year-old African-American male with hypertension is given a [treatment designed to lower their blood pressure], then we give a second, similarly built 45-year old African-American male with hypertension a placebo.

  • Good (2005), section 5.2.4

21.3 The Lead in the Blood of Children Study

Morton et al. (1982) studied the absorption of lead into the blood of children. This was a matched-sample study, where the exposed group of interest contained 33 children of parents who worked in a battery manufacturing factory (where lead was used) in the state of Oklahoma. Specifically, each child with a lead-exposed parent was matched to another child of the same age, exposure to traffic, and living in the same neighborhood whose parents did not work in lead-related industries. So the complete study had 66 children, arranged in 33 matched pairs. The outcome of interest, gathered from a sample of whole blood from each of the children, was lead content, measured in mg/dl.

One motivation for doing this study is captured in the Abstract from Morton et al. (1982).

It has been repeatedly reported that children of employees in a lead-related industry are at increased risk of lead absorption because of the high levels of lead found in the household dust of these workers.

The data are available in several places, including Table 5 of Pruzek and Helmreich (2009), in the BloodLead data set within the PairedData package in R, but we also make them available in the bloodlead.csv file. A table of the first few pairs of observations (blood lead levels for one child exposed to lead and the matched control) is shown below.

bloodlead <- read_csv("data/bloodlead.csv", show_col_types = FALSE)

bloodlead
# A tibble: 33 × 3
   pair  exposed control
   <chr>   <dbl>   <dbl>
 1 P01        38      16
 2 P02        23      18
 3 P03        41      18
 4 P04        18      24
 5 P05        37      19
 6 P06        36      11
 7 P07        23      10
 8 P08        62      15
 9 P09        31      16
10 P10        34      18
# ℹ 23 more rows
  • In each pair, one child was exposed (to having a parent working in the factory) and the other was not.
  • Otherwise, though, each child was very similar to its matched partner.
  • The data under exposed and control are the blood lead content, in mg/dl.

Our primary goal will be to estimate the difference in lead content between the exposed and control children, and then use that sample estimate to make inferences about the difference in lead content between the population of all children like those in the exposed group and the population of all children like those in the control group.

21.3.1 Our Key Questions for a Paired Samples Comparison

  1. What is the population under study?
  • All pairs of children living in Oklahoma near the factory in question, in which one had a parent working in a factory that exposed them to lead, and the other did not.
  1. What is the sample? Is it representative of the population?
  • The sample consists of 33 pairs of one exposed and one control child.
  • This is a case-control study, where the children were carefully enrolled to meet the design criteria. Absent any other information, we’re likely to assume that there is no serious bias associated with these pairs, and that assuming they represent the population effectively (and perhaps the broader population of kids whose parents work in lead-based industries more generally) may well be at least as reasonable as assuming they don’t.
  1. Who are the subjects / individuals within the sample?
  • Each of our 33 pairs of children includes one exposed child and one unexposed (control) child.
  1. What data are available on each individual?
  • The blood lead content, as measured in mg/dl of whole blood.

21.3.2 Lead Study Caveats

Note that the children were not randomly selected from general populations of kids whose parents did and did not work in lead-based industries.

  • To make inferences to those populations, we must make strong assumptions to believe, for instance, that the sample of exposed children is as representative as a random sample of children with similar exposures across the world would be.
  • The researchers did have a detailed theory about how the exposed children might be at increased risk of lead absorption, and in fact as part of the study gathered additional information about whether a possible explanation might be related to the quality of hygiene of the parents (all of them were fathers, actually) who worked in the factory.
  • This is an observational study, so that the estimation of a causal effect between parental work in a lead-based industry and children’s blood lead content can be made, without substantial (and perhaps heroic) assumptions.

21.4 Exploratory Data Analysis for Paired Samples

We’ll begin by adjusting the data in two ways.

  • We’d like that first variable (pair) to be a factor rather than a character type in R, because we want to be able to summarize it more effectively. So we’ll make that change.
  • Also, we’d like to calculate the difference in lead content between the exposed and the control children in each pair, and we’ll save that within-pair difference in a variable called lead_diff. We’ll take lead_diff = exposed - control so that positive values indicate increased lead in the exposed child.
bloodlead_original <- bloodlead

bloodlead <- bloodlead_original |>
    mutate(pair = factor(pair),
           lead_diff = exposed - control)

bloodlead
# A tibble: 33 × 4
   pair  exposed control lead_diff
   <fct>   <dbl>   <dbl>     <dbl>
 1 P01        38      16        22
 2 P02        23      18         5
 3 P03        41      18        23
 4 P04        18      24        -6
 5 P05        37      19        18
 6 P06        36      11        25
 7 P07        23      10        13
 8 P08        62      15        47
 9 P09        31      16        15
10 P10        34      18        16
# ℹ 23 more rows

21.4.1 The Paired Differences

To begin, we focus on lead_diff for our exploratory work, which is the exposed - control difference in lead content within each of the 33 pairs. So, we’ll have 33 observations, as compared to the 462 in the serum zinc data, but most of the same tools are still helpful.

p1 <- ggplot(bloodlead, aes(sample = lead_diff)) +
  geom_qq(col = "steelblue") + geom_qq_line(col = "navy") + 
  theme(aspect.ratio = 1) + 
  labs(title = "Normal Q-Q plot")

p2 <- ggplot(bloodlead, aes(x = lead_diff)) +
  geom_histogram(aes(y = stat(density)), 
                 binwidth = 5, fill = "steelblue", col = "white") +
  stat_function(fun = dnorm, 
                args = list(mean = mean(bloodlead$lead_diff), 
                            sd = sd(bloodlead$lead_diff)),
                col = "navy", lwd = 1.5) +
  labs(title = "Histogram with Normal Density")

p3 <- ggplot(bloodlead, aes(x = lead_diff, y = "")) +
  geom_boxplot(fill = "steelblue", outlier.color = "steelblue") + 
  stat_summary(fun = "mean", geom = "point", 
               shape = 23, size = 3, fill = "white") +
  labs(title = "Boxplot", y = "")

p1 + (p2 / p3 + plot_layout(heights = c(4,1))) + 
    plot_annotation(title = "Difference in Blood Lead Content (mg/dl) for 33 Pairs of Children")
Warning: `stat(density)` was deprecated in ggplot2 3.4.0.
ℹ Please use `after_stat(density)` instead.

Note that in all of this work, I plotted the paired differences. One obvious way to tell if you have paired samples is that you can pair every single subject from one exposure group to a unique subject in the other exposure group. Everyone has to be paired, so the sample sizes will always be the same in the two groups.

Here’s a summary of the paired differences.

mosaic::favstats(~ lead_diff, data = bloodlead) |>
    kbl(digits = 2) |> kable_styling()
min Q1 median Q3 max mean sd n missing
-9 4 15 25 60 15.97 15.86 33 0
bloodlead |> summarise(skew1 = 
                            (mean(lead_diff) - median(lead_diff)) / 
                            sd(lead_diff))
# A tibble: 1 × 1
   skew1
   <dbl>
1 0.0611

21.4.2 Impact of Matching - Scatterplot and Correlation

Here, the data are paired by the study through matching on neighborhood, age and exposure to traffic. Each individual child’s outcome value is part of a pair with the outcome value for his/her matching partner. We can see this pairing in several ways, perhaps by drawing a scatterplot of the pairs.

ggplot(bloodlead, aes(x = control, y = exposed)) +
    geom_point(size = 2) + 
    geom_smooth(method = "lm", formula = y ~ x, se = FALSE) +
    geom_text(x = 20, y = 65, col = "blue", 
             label = 
                 paste("Pearson r = ",
                       round(cor(bloodlead$control, bloodlead$exposed),2))) +
    labs(title = "Paired Samples in Blood Lead study",
         x = "Blood Lead Content (mg/dl) in Control Child",
         y = "Blood Lead Content (mg/dl) in Exposed Child")

Each point here represents a pair of observations, one from a control child, and one from the matched exposed child. If there is a strong linear relationship (usually with a positive slope, thus positive correlation) between the paired outcomes, then the pairing will be more helpful in terms of improving statistical power of the estimates we build than if there is a weak relationship.

  • The stronger the Pearson correlation coefficient, the more helpful pairing will be.
  • Here, a straight line model using the control child’s blood lead content accounts for about 3.2% of the variation in blood lead content in the exposed child.
  • As it turns out, pairing will have only a modest impact here on the inferences we draw in the study. We still will treat the data as paired, despite this.

21.5 Looking at Separate Samples: Using pivot_longer

For the purpose of estimating the difference between the exposed and control children, the summaries of the paired differences are what we’ll need.

In some settings, however, we might also look at a boxplot, or violin plot, or ridgeline plot that showed the distributions of exposed and control children separately. But we will run into trouble because one variable (blood lead content) is spread across multiple columns (control and exposed.) The solution is to “pivot” the tibble from its current format to build a new, tidy tibble. Because the data aren’t tidied here, so that we have one row for each subject and one column for each variable, we have to do some work to get them in that form for our usual plotting strategy to work well.

  • pivot_longer() “lengthens” the data, increasing the number of rows and decreasing the number of columns.
  • pivot_wider() performs the inverse of that transformation, “widening” the data.

In our original bloodlead data, if we drop the lead_diff addition we made, we have wide data, with each row representing two different subjects.

head(bloodlead_original, 3)
# A tibble: 3 × 3
  pair  exposed control
  <chr>   <dbl>   <dbl>
1 P01        38      16
2 P02        23      18
3 P03        41      18

And what we want to accomplish is to have one row for each subject, instead of one row for each pair of subjects. So we want to make the data longer.

bloodlead_longer <- bloodlead_original |>
    pivot_longer(
        cols = -c(pair),
        names_to = "status",
        values_to = "lead_level")

bloodlead_longer
# A tibble: 66 × 3
   pair  status  lead_level
   <chr> <chr>        <dbl>
 1 P01   exposed         38
 2 P01   control         16
 3 P02   exposed         23
 4 P02   control         18
 5 P03   exposed         41
 6 P03   control         18
 7 P04   exposed         18
 8 P04   control         24
 9 P05   exposed         37
10 P05   control         19
# ℹ 56 more rows

For more on this approach (in this case, we’re making the data “longer” and its opposite would be be making the data “wider”), visit the Tidy data chapter in Hadley Wickham and Grolemund (2023) and the tidyr repository on Github at https://github.com/tidyverse/tidyr.

And now, we can plot as usual to compare the two samples.

First, we’ll look at a boxplot, showing all of the data.

ggplot(bloodlead_longer, aes(x = status, y = lead_level)) +
    geom_violin() +
    geom_boxplot(aes(fill = status), width = 0.2) +
    stat_summary(fun = "mean", geom = "point", 
                 shape = 23, size = 3, fill = "blue") +
    scale_fill_viridis_d(alpha = 0.5) +
    guides(fill = "none") + 
    coord_flip() +
    labs(title = "Boxplot of Lead Content in Exposed and Control kids") 

We’ll also look at a ridgeline plot, because Dr. Love likes them, even though they’re really more useful when we’re comparing more than two samples.

ggplot(bloodlead_longer, aes(x = lead_level, y = status, fill = status)) +
    geom_density_ridges(scale = 0.9) +
    guides(fill = "none") + 
    labs(title = "Lead Content in Exposed and Control kids") +
    theme_ridges()
Picking joint bandwidth of 4.01

Both the center and the spread of the distribution are substantially larger in the exposed group than in the controls. Of course, numerical summaries show these patterns, too.

mosaic::favstats(lead_level ~ status, data = bloodlead_longer) |>
    kbl(digits = 2) |> kable_styling()
status min Q1 median Q3 max mean sd n missing
control 7 13 16 19 25 15.88 4.54 33 0
exposed 10 21 34 39 73 31.85 14.41 33 0

21.6 Estimating the Difference in Means with Paired Samples

Suppose we want to estimate the difference in the mean blood level across the population of children represented by the sample taken in this study. To do so, we must take advantage of the matched samples design, and complete our estimation on the paired differences, treating them as if they were a single sample of data.

One way to accomplish this is simply to run the usual intercept-only linear regression model on the paired differences.

model_lead <- lm(lead_diff ~ 1, data = bloodlead)

tidy(model_lead, conf.int = TRUE, conf.level = 0.90) |>
    kbl(digits = 2) |> kable_styling()
term estimate std.error statistic p.value conf.low conf.high
(Intercept) 15.97 2.76 5.78 0 11.29 20.65

Our point estimate for the difference (exposed - control) in lead levels is 15.97 mg/dl, and our 90% confidence interval is (11.29, 20.65) mg/dl.

21.6.1 Paired Data in Longer Format?

If we had the data in “longer” format, as in bloodlead_longer, with the pairs identified by the pair variable, then we could obtained the same confidence interval using:

model2_lead <- lm(lead_level ~ status + factor(pair), data = bloodlead_longer)

tidy(model2_lead, conf.int = TRUE, conf.level = 0.90) |>
    kbl(digits = 2) |> kable_styling()
term estimate std.error statistic p.value conf.low conf.high
(Intercept) 19.02 8.05 2.36 0.02 5.38 32.65
statusexposed 15.97 2.76 5.78 0.00 11.29 20.65
factor(pair)P02 -6.50 11.22 -0.58 0.57 -25.50 12.50
factor(pair)P03 2.50 11.22 0.22 0.83 -16.50 21.50
factor(pair)P04 -6.00 11.22 -0.53 0.60 -25.00 13.00
factor(pair)P05 1.00 11.22 0.09 0.93 -18.00 20.00
factor(pair)P06 -3.50 11.22 -0.31 0.76 -22.50 15.50
factor(pair)P07 -10.50 11.22 -0.94 0.36 -29.50 8.50
factor(pair)P08 11.50 11.22 1.03 0.31 -7.50 30.50
factor(pair)P09 -3.50 11.22 -0.31 0.76 -22.50 15.50
factor(pair)P10 -1.00 11.22 -0.09 0.93 -20.00 18.00
factor(pair)P11 -6.00 11.22 -0.53 0.60 -25.00 13.00
factor(pair)P12 -13.50 11.22 -1.20 0.24 -32.50 5.50
factor(pair)P13 -7.00 11.22 -0.62 0.54 -26.00 12.00
factor(pair)P14 -13.50 11.22 -1.20 0.24 -32.50 5.50
factor(pair)P15 -11.00 11.22 -0.98 0.33 -30.00 8.00
factor(pair)P16 -9.00 11.22 -0.80 0.43 -28.00 10.00
factor(pair)P17 -7.50 11.22 -0.67 0.51 -26.50 11.50
factor(pair)P18 -15.50 11.22 -1.38 0.18 -34.50 3.50
factor(pair)P19 0.00 11.22 0.00 1.00 -19.00 19.00
factor(pair)P20 -0.50 11.22 -0.04 0.96 -19.50 18.50
factor(pair)P21 -5.50 11.22 -0.49 0.63 -24.50 13.50
factor(pair)P22 0.00 11.22 0.00 1.00 -19.00 19.00
factor(pair)P23 1.00 11.22 0.09 0.93 -18.00 20.00
factor(pair)P24 6.00 11.22 0.53 0.60 -13.00 25.00
factor(pair)P25 4.50 11.22 0.40 0.69 -14.50 23.50
factor(pair)P26 -3.50 11.22 -0.31 0.76 -22.50 15.50
factor(pair)P27 0.00 11.22 0.00 1.00 -19.00 19.00
factor(pair)P28 3.50 11.22 0.31 0.76 -15.50 22.50
factor(pair)P29 2.50 11.22 0.22 0.83 -16.50 21.50
factor(pair)P30 -12.50 11.22 -1.11 0.27 -31.50 6.50
factor(pair)P31 16.00 11.22 1.43 0.16 -3.00 35.00
factor(pair)P32 -9.00 11.22 -0.80 0.43 -28.00 10.00
factor(pair)P33 -7.00 11.22 -0.62 0.54 -26.00 12.00

and the key elements are found in the statusexposed row, which we can focus on nicely (since the output of the tidy() function is always a tibble) with:

tidy(model2_lead, conf.int = TRUE, conf.level = 0.90) |>
    filter(term == "statusexposed") |>
    kbl(digits = 2) |> kable_styling()
term estimate std.error statistic p.value conf.low conf.high
statusexposed 15.97 2.76 5.78 0 11.29 20.65

and again, we have our 90% confidence interval estimate of the population mean difference between exposed and control children.

21.7 Matched Pairs vs. Two Independent Samples

These data were NOT obtained from two independent samples, but rather from matched pairs.

  • We only have matched pairs if each individual observation in the “treatment” group is matched to one and only one observation in the “control” group by the way in which the data were gathered. Paired (or matched) data can arise in several ways.
    • The most common is a “pre-post” study where subjects are measured both before and after an exposure happens.
    • In observational studies, we often match up subjects who did and did not receive an exposure so as to account for differences on things like age, sex, race and other covariates. This is what happens in the Lead in the Blood of Children study.
  • If the data are from paired samples, we should (and in fact) must form paired differences, with no subject left unpaired.
    • If we cannot line up the data comparing two samples of quantitative data so that the links between the individual “treated” and “control” observations to form matched pairs are evident, then the data are not paired.
    • If the sample sizes were different, we’d know we have independent samples, because matched pairs requires that each subject in the “treated” group be matched to a single, unique member of the “control” group, and thus that we have exactly as many “treated” as “control” subjects.
    • But having as many subjects in one treatment group as the other (which is called a balanced design) is only necessary, and not sufficient, for us to conclude that matched pairs are used.

As Bock, Velleman, and De Veaux (2004) suggest,

… if you know the data are paired, you can take advantage of that fact - in fact, you must take advantage of it. … You must decide whether the data are paired from understanding how they were collected and what they mean. … There is no test to determine whether the data are paired.

21.8 Estimating the Population Mean of the Paired Differences

There are two main approaches used frequently to estimate the population mean of paired differences.

  • Estimation using the t distribution (and assuming at least an approximately Normal distribution for the paired differences)
  • Estimation using the bootstrap (which doesn’t require the Normal assumption)

In addition, we might consider estimating an alternate statistic when the data don’t follow a symmetric distribution, like the median, with the bootstrap. In other settings, a rank-based alternative called the Wilcoxon signed rank test is available to estimate a psuedo-median. All of these approaches mirror what we did with a single sample, earlier in these Notes.

21.9 t-based CI for Population Mean of Paired Differences

In R, there are at least five different methods for obtaining the t-based confidence interval for the population difference in means between paired samples. They are all mathematically identical. The key idea is to calculate the paired differences (exposed - control, for example) in each pair, and then treat the result as if it were a single sample and apply the methods developed for that situation earlier in these Notes.

21.9.1 Method 1

We can use the single-sample approach, applied to the variable containing the paired differences. Let’s build a 90% two-sided confidence interval for the population mean of the difference in blood lead content across all possible pairs of an exposed (parent works in a lead-based industry) and a control (parent does not) child.

tt1 <- t.test(bloodlead$lead_diff, conf.level = 0.90, 
                            alt = "two.sided")

tt1

    One Sample t-test

data:  bloodlead$lead_diff
t = 5.783, df = 32, p-value = 2.036e-06
alternative hypothesis: true mean is not equal to 0
90 percent confidence interval:
 11.29201 20.64738
sample estimates:
mean of x 
  15.9697 
tidy(tt1) |> kbl(digits = 2) |> kable_styling()
estimate statistic p.value parameter conf.low conf.high method alternative
15.97 5.78 0 32 11.29 20.65 One Sample t-test two.sided

The 90% confidence interval is (11.29, 20.65) according to this t-based procedure. An appropriate interpretation of the 90% two-sided confidence interval would be:

  • (11.29, 20.65) milligrams per deciliter is a 90% two-sided confidence interval for the population mean difference in blood lead content between exposed and control children.
  • Our point estimate for the true population difference in mean blood lead content is 15.97 mg.dl. The values in the interval (11.29, 20.65) mg/dl represent a reasonable range of estimates for the true population difference in mean blood lead content, and we are 90% confident that this method of creating a confidence interval will produce a result containing the true population mean difference.
  • Were we to draw 100 samples of 33 matched pairs from the population described by this sample, and use each such sample to produce a confidence interval in this manner, approximately 90 of those confidence intervals would cover the true population mean difference in blood lead content levels.

21.9.2 Method 2

Or, we can apply the single-sample approach to a calculated difference in blood lead content between the exposed and control groups. Here, we’ll get a 95% two-sided confidence interval for that difference, instead of the 90% interval we obtained above.

tt2 <- t.test(bloodlead$exposed - bloodlead$control, 
       conf.level = 0.95, alt = "two.sided")

tt2

    One Sample t-test

data:  bloodlead$exposed - bloodlead$control
t = 5.783, df = 32, p-value = 2.036e-06
alternative hypothesis: true mean is not equal to 0
95 percent confidence interval:
 10.34469 21.59470
sample estimates:
mean of x 
  15.9697 
tidy(tt2) |> kbl(digits = 2) |> kable_styling()
estimate statistic p.value parameter conf.low conf.high method alternative
15.97 5.78 0 32 10.34 21.59 One Sample t-test two.sided

21.9.3 Method 3

Or, we can provide R with two separate samples (unaffected and affected) and specify that the samples are paired. Here, we’ll get a 99% one-sided confidence interval (lower bound) for the population mean difference in blood lead content.

tt3 <- t.test(bloodlead$exposed, bloodlead$control, conf.level = 0.99,
       paired = TRUE, alt = "greater")

tt3

    Paired t-test

data:  bloodlead$exposed and bloodlead$control
t = 5.783, df = 32, p-value = 1.018e-06
alternative hypothesis: true mean difference is greater than 0
99 percent confidence interval:
 9.207658      Inf
sample estimates:
mean difference 
        15.9697 
tidy(tt3) |> kbl(digits = 2) |> kable_styling()
estimate statistic p.value parameter conf.low conf.high method alternative
15.97 5.78 0 32 9.21 Inf Paired t-test greater

Again, the three different methods using t.test for paired samples will all produce identical results if we feed them the same confidence level and type of interval (two-sided, greater than or less than).

21.9.4 Method 4

We can also use an intercept-only linear regression model to estimate the population mean of the paired differences with a two-tailed confidence interval, by creating a variable containing those paired differences.

model_lead <- lm(lead_diff ~ 1, data = bloodlead)

tidy(model_lead, conf.int = TRUE, conf.level = 0.95) |> 
  kbl(digits = 2) |> kable_styling()
term estimate std.error statistic p.value conf.low conf.high
(Intercept) 15.97 2.76 5.78 0 10.34 21.59

21.9.5 Method 5

If we have the data in a longer format, with a variable identifying the matched pairs, we can use a different specification for a linear model to obtain the same estimate.

model2_lead <- lm(lead_level ~ status + factor(pair), data = bloodlead_longer)

tidy(model2_lead, conf.int = TRUE, conf.level = 0.95) |>
    filter(term == "statusexposed") |> kbl(digits = 2) |> kable_styling()
term estimate std.error statistic p.value conf.low conf.high
statusexposed 15.97 2.76 5.78 0 10.34 21.59

21.9.6 Assumptions

If we are building a confidence interval based on a sample of observations drawn from a population, then we must pay close attention to the assumptions of those procedures. The confidence interval procedure for the population mean paired difference using the t distribution assumes that:

  1. We want to estimate the population mean paired difference.
  2. We have drawn a sample of paired differences at random from the population of interest.
  3. The sampled paired differences are drawn from the population set of paired differences independently and have identical distributions.
  4. The population follows a Normal distribution. At the very least, the sample itself is approximately Normal.

21.10 Bootstrap CI for mean difference using paired samples

The same bootstrap approach is used for paired differences as for a single sample. We use the smean.cl.boot() function in the Hmisc package to obtain bootstrap confidence intervals for the population mean of the paired differences in blood lead content.

set.seed(431555)
smean.cl.boot(bloodlead$lead_diff, B = 1000, conf.int = 0.95)
    Mean    Lower    Upper 
15.96970 10.81742 21.48788 

Note that in this case, the confidence interval for the difference in means is a bit less wide than the 95% confidence interval generated by the t test, which was (10.34, 21.59). It’s common for the bootstrap to produce a narrower range (i.e. an apparently more precise estimate) for the population mean, but it’s not automatic that the endpoints from the bootstrap will be inside those provided by the t test, either.

For example, this bootstrap CI doesn’t contain the t-test based interval, since its upper bound exceeds that of the t-based interval:

set.seed(431002)
smean.cl.boot(bloodlead$lead_diff, B = 1000, conf.int = 0.95)
    Mean    Lower    Upper 
15.96970 10.81667 21.66667 

This demonstration aside, the appropriate thing to do when applying the bootstrap to specify a confidence interval is select a seed and the number (B = 1,000 or 10,000, usually) of desired bootstrap replications, then run the bootstrap just once and move on, rather than repeating the process multiple times looking for a particular result.

21.10.1 Assumptions

The bootstrap confidence interval procedure for the population mean (or median) of a set of paired differences assumes that:

  1. We want to estimate the population mean of the paired differences (or the population median).
  2. We have drawn a sample of observations at random from the population of interest.
  3. The sampled observations are drawn from the population of paired differences independently and have identical distributions.
  4. We are willing to put up with the fact that different people (not using the same random seed) will get somewhat different confidence interval estimates using the same data.

As we’ve seen, a major part of the bootstrap’s appeal is the ability to relax some assumptions.

21.11 Wilcoxon Signed Rank-based CI for paired samples

We could also use the Wilcoxon signed rank procedure to generate a CI for the pseudo-median of the paired differences.

wt <- wilcox.test(bloodlead$lead_diff, conf.int = TRUE,
                  conf.level = 0.90, exact = FALSE)
wt

    Wilcoxon signed rank test with continuity correction

data:  bloodlead$lead_diff
V = 499, p-value = 1.155e-05
alternative hypothesis: true location is not equal to 0
90 percent confidence interval:
 10.99992 20.49998
sample estimates:
(pseudo)median 
      15.49996 
tidy(wt) |> kbl(digits = 2) |> kable_styling()
estimate statistic p.value conf.low conf.high method alternative
15.5 499 0 11 20.5 Wilcoxon signed rank test with continuity correction two.sided

As in the one sample case, we can revise this code slightly to specify a different confidence level, or gather a one-sided rather than a two-sided confidence interval.

21.11.1 Assumptions

The Wilcoxon signed rank confidence interval procedure in working with paired differences assumes that:

  1. We want to estimate the population pseudo-median of the paired differences.
  2. We have drawn a sample of observations at random from the population of paired differences of interest.
  3. The sampled observations are drawn from the population of paired differences independently and have identical distributions.
  4. The population follows a symmetric distribution. At the very least, the sample itself shows no substantial skew, so that the sample pseudo-median is a reasonable estimate for the population median.

21.12 Choosing a Confidence Interval Approach

Suppose we want to find a confidence interval for the population mean difference between two populations based on matched pairs.

  1. If we are willing to assume that the population distribution is Normal
    • we usually use a t-based CI.
  2. If we are unwilling to assume that the population is Normal,
    • use a bootstrap procedure to get a CI for the population mean, or even the median
    • but are willing to assume the population is symmetric, consider a Wilcoxon signed rank procedure to get a CI for the median, rather than the mean.

The two methods you’ll use most often are the bootstrap (especially if the data don’t appear to be at least pretty well fit by a Normal model) and the t-based confidence intervals (if the data do appear to fit a Normal model reasonably well.)

21.13 Conclusions for the bloodlead study

Using any of these procedures, we would conclude that the null hypothesis (that the true mean of the paired Exposed - Control differences is 0 mg/dl) is not consonant with what we see in the 90% confidence interval.

Procedure Comparing 90% CI
Paired t Means 11.3, 20.6
Wilcoxon signed rank Pseudo-medians 11, 20.5
Bootstrap CI Means 11.6, 20.6

Note that one-sided or one-tailed hypothesis testing procedures work the same way for paired samples as they did for a single sample.

21.14 The Sign test

The sign test is something we’ve skipped in our discussion so far. It is a test for consistent differences between pairs of observations, just as the paired t, Wilcoxon signed rank and bootstrap for paired samples can provide. It has the advantage that it is relatively easy to calculate by hand, and that it doesn’t require the paired differences to follow a Normal distribution. In fact, it will even work if the data are substantially skewed.

  • Calculate the paired difference for each pair, and drop those with difference = 0.
  • Let N be the number of pairs that remain, so there are 2N data points.
  • Let W, the test statistic, be the number of pairs (out of N) in which the difference is positive.
  • Assuming that H0 is true, then W follows a binomial distribution with probability 0.5 on N trials.

For example, consider our data on blood lead content:

bloodlead$lead_diff
 [1] 22  5 23 -6 18 25 13 47 15 16  6  1  2  7  0  4 -9 -3 36 25  1 16 42 30 25
[26] 23 32 17  9 -3 60 14 14
Difference # of Pairs
Greater than zero 28
Equal to zero 1
Less than zero 4

So we have N = 32 pairs, with \(W\) = 28 that are positive. We then use the binom.test approach in R:

binom.test(x = 28, n = 32, p = 0.5, 
           alternative = "two.sided")

    Exact binomial test

data:  28 and 32
number of successes = 28, number of trials = 32, p-value = 1.93e-05
alternative hypothesis: true probability of success is not equal to 0.5
95 percent confidence interval:
 0.7100516 0.9648693
sample estimates:
probability of success 
                 0.875 
  • A one-tailed test can be obtained by substituting in “less” or “greater” as the alternative of interest.
  • The confidence interval provided doesn’t relate back to our original population means. It’s just showing the confidence interval around the probability of the exposed mean being greater than the control mean for a pair of children.

21.15 Paired (Dependent) vs. Independent Samples

One area that consistently trips students up in this course is the thought process involved in distinguishing studies comparing means that should be analyzed using dependent (i.e. paired or matched) samples and those which should be analyzed using independent samples. A dependent samples analysis uses additional information about the sample to pair/match subjects receiving the various exposures. That additional information is not part of an independent samples analysis (unpaired testing situation.) The reasons to do this are to (a) increase statistical power, and/or (b) reduce the effect of confounding. Here are a few thoughts on the subject.

In the design of experiments, blocking is the term often used for the process of arranging subjects into groups (blocks) that are similar to one another. Typically, a blocking factor is a source of variability that is not of primary interest to the researcher An example of a blocking factor might be the sex of a patient; by blocking on sex, this source of variability is controlled for, thus leading to greater accuracy.

  1. If the sample sizes are not balanced (not equal), the samples must be treated as independent, since there would be no way to precisely link all subjects. So, if we have 10 subjects receiving exposure A and 12 subjects receiving exposure B, a dependent samples analysis (such as a paired t test) is not correct.

  2. The key element is a meaningful link between each observation in one exposure group and a specific observation in the other exposure group. Given a balanced design, the most common strategy indicating dependent samples involves two or more repeated measures on the same subjects. For example, if we are comparing outcomes before and after the application of an exposure, and we have, say, 20 subjects who provide us data both before and after the exposure, then the comparison of results before and after exposure should use a dependent samples analysis. The link between the subjects is the subject itself - each exposed subject serves as its own control.

  3. The second most common strategy indicating dependent samples involves deliberate matching of subjects receiving the two exposures. A matched set of observations (often a pair, but it could be a trio or quartet, etc.) is determined using baseline information and then (if a pair is involved) one subject receives exposure A while the other member of the pair receives exposure B, so that by calculating the paired difference, we learn about the effect of the exposure, while controlling for the variables made similar across the two subjects by the matching process.

  4. In order for a dependent samples analysis to be used, we need (a) a link between each observation across the exposure groups based on the way the data were collected, and (b) a consistent measure (with the same units of measurement) so that paired differences can be calculated and interpreted sensibly.

  5. If the samples are collected to facilitate a dependent samples analysis, the correlation of the outcome measurements across the groups will often be moderately strong and positive. If that’s the case, then the use of a dependent samples analysis will reduce the effect of baseline differences between the exposure groups, and thus provide a more precise estimate. But even if the correlation is quite small, a dependent samples analysis should provide a more powerful estimate of the impact of the exposure on the outcome than would an independent samples analysis with the same number of observations.

21.15.1 Three “Tricky” Examples

  1. Suppose we take a convenient sample of 200 patients from the population of patients who complete a blood test in April 2017 including a check of triglycerides, and who have a triglyceride level in the high category (200 to 499 mg/dl). Next, we select a patient at random from this group of 200 patients, and then identify another patient from the group of 200 who is the same age (to within 2 years) and also the same sex. We then randomly assign our intervention to one of these two patients and usual care without our intervention to the other patient. We then set these two patients aside and return to our original sample, repeating the process until we cannot find any more patients in the same age range and of the same gender. This generates a total of 77 patients who receive the intervention and 77 who do not. If we are trying to assess the effect of our intervention on triglyceride level in October 2017 using this sample of 154 people, should we use dependent (paired) or independent samples?

  2. Suppose we take a convenient sample of 77 patients from the population of patients who complete a blood test in April 2017 including a check of triglycerides, and who have a triglyceride level in the high category (200 to 499 mg/dl). Next, we take a convenient sample of 77 patients from the population of patients who complete a blood test in May 2017 including a check of triglycerides, and who have a triglyceride level in the high category (200 to 499 mg/dl). We flip a coin to determine whether the intervention will be given to each of the 77 patients from April 2017 (if the coin comes up “HEADS”) or instead to each of the 77 patients from May 2017 (if the coin comes up “TAILS”). Then, we assign our intervention to the patients seen in the month specified by the coin and assign usual care without our intervention to the patients seen in the other month. If we are trying to assess the effect of our intervention on triglyceride level in October 2017 using this sample of 154 people, should we use dependent (paired) or independent samples?

  3. Suppose we take a convenient sample of 200 patients from the population of patients who complete a blood test in April 2017 including a check of triglycerides, and who have a triglyceride level in the high category (200 to 499 mg/dl). For each patient, we re-measure them again in October 2017, again checking their triglyceride level. But in between, we take the first 77 of the patients in a randomly sorted list and assign them to our intervention (which takes place from June through September 2017) and take an additional group of 77 patients from the remaining part of the list and assign them to usual care without our intervention over the same time period. If we are trying to assess the effect of our intervention on each individual’s change in triglyceride level (from April/May to October) using this sample of 154 people, should we use dependent (paired) or independent samples?

Answers to these “tricky” examples appear at the end of this Chapter.

21.16 A More Complete Decision Support Tool: Comparing Means

  1. Are these paired or independent samples?

  2. If paired samples, then are the paired differences approximately Normally distributed?

    1. If yes, then a paired t test or confidence interval is likely the best choice.
    2. If no, is the main concern outliers (with generally symmetric data), or skew?
      1. If the paired differences appear to be generally symmetric but with substantial outliers, a Wilcoxon signed rank test is an appropriate choice, as is a bootstrap confidence interval for the population mean of the paired differences.
      2. If the paired differences appear to be seriously skewed, then we’ll usually build a bootstrap confidence interval, although a sign test is another reasonable possibility, although it doesn’t provide a confidence interval for the population mean of the paired differences.
  3. If independent, is each sample Normally distributed?

    1. No –> use Wilcoxon-Mann-Whitney rank sum test or bootstrap via bootdif.
    2. Yes –> are sample sizes equal?
      1. Balanced Design (equal sample sizes) - use pooled t test
      2. Unbalanced Design - use Welch test

21.16.1 Answers for the Three “Tricky” Examples

Answer for 1. Our first task is to identify the outcome and the exposure groups. Here, we are comparing the distribution of our outcome (triglyceride level in October) across two exposures: (a) receiving the intervention and (b) not receiving the intervention. We have a sample of 77 patients receiving the intervention, and a different sample of 77 patients receiving usual care. Each of the 77 subjects receiving the intervention is matched (on age and sex) to a specific subject not receiving the intervention. So, we can calculate paired differences by taking the triglyceride level for the exposed member of each pair and subtracting the triglyceride level for the usual care member of that same pair. Thus our comparison of the exposure groups should be accomplished using a dependent samples analysis, such as a paired t test.

Answer for 2. Again, we begin by identifying the outcome (triglyceride level in October) and the exposure groups. Here, we compare two exposures: (a) receiving the intervention and (b) receiving usual care. We have a sample of 77 patients receiving the intervention, and a different sample of 77 patients receiving usual care. But there is no pairing or matching involved. There is no connection implied by the way that the data were collected that implies that, for example, patient 1 in the intervention group is linked to any particular subject in the usual care group. So we need to analyze the data using independent samples.

Answer for 3. Once again, we identify the outcome (now it is the within-subject change in triglyceride level from April to October) and the exposure groups. Here again, we compare two exposures: (a) receiving the intervention and (b) receiving usual care. We have a sample of 77 patients receiving the intervention, and a different sample of 77 patients receiving usual care. But again, there is no pairing or matching between the patients receiving the intervention and the patients receiving usual care. While each outcome value is a difference (or change) in triglyceride levels, there’s no connection implied by the way that the data were collected that implies that, for example, patient 1 in the intervention group is linked to any particular subject in the usual care group. So, again, we need to analyze the data using independent samples.

For more background and fundamental material, you might consider the Wikipedia pages on Paired Difference Test and on Blocking (statistics).