Sometimes when reading esoteric prose we have a hard time comprehending what the author is trying to convey. A student project group decided to partially replicate part of a seminal 1972 study by Bransford and Johnson on memory encoding (“Contextual prerequisites for understanding: Some investigations of comprehension and recall,” Journal of Verbal Learning and Verbal Behavior, 11, pp. 717-726). The study examined college students’ comprehension of following ambiguous prose passage.
If the balloons popped, the sound wouldn’t be able to carry since everything would be too far away from the correct floor. A closed window would also prevent the sound from carrying, since most buildings tend to be well insulated. Since the whole operation depends on a steady flow of electricity, a break in the middle of the wire would also cause problems. Of course, the fellow could shout, but the human voice is not loud enough to carry that far. An additional problem is that a string could break on the instrument. Then there could be no accompaniment to the message. It is clear that the best situation would involve less distance. Then there would be fewer potential problems. With face to face contact, the least number of things could go wrong. (p. 719)
Did you understand what the passage was describing? Would it help to have a picture? The picture that goes along with the passage is shown below:
Before the college students were tested to see whether they understood the passage, they were randomly assigned to one of three groups, and then each group was read the passage under one of the following cue conditions:
Is student comprehension of an ambiguous prose passage affected by viewing a picture designed to aid them in their understanding either before or after or not at all? So our research conjecture might be: The long-run mean comprehension score differs among the three treatments.
Fifty-seven randomly selected students were randomly assigned to be in one of the three groups with nineteen in each group. After hearing the passage under the assigned cue condition, they were given a test and their comprehension of the passage was graded on a scale of 1 to 7 with 7 being the highest level of comprehension. Note that the data collected from this study design will not be paired, but will be independent, with the outcomes in one treatment group not affecting the outcomes in the other treatment groups. (Tweaked a bit from Tintle et al. 2014 [Chapter 9])
Null hypothesis: The long-run mean comprehension scores are the same under all three cue conditions (after, before, none).
Alternative hypothesis: At least one of the long-run mean comprehension scores is different.
Null hypothesis: There is no association between when/whether a picture is shown and student comprehension of this passage in the population of interest.
Alternative hypothesis: There is an association between the variables in the population.
It’s important to set the significance level before starting the testing using the data. Let’s set the significance level at 5% here.
library(dplyr)
library(knitr)
library(ggplot2)
library(oilabs)
# download.file("http://www.math.hope.edu/isi/data/chap9/Comprehension.txt", destfile = "comprehension.txt")
comp <- read.table("comprehension.txt", header = TRUE, stringsAsFactors = FALSE)
comp_summ <- comp %>% group_by(Condition) %>%
summarize(sample_size = n(),
mean = mean(Comprehension),
sd = sd(Comprehension),
minimum = min(Comprehension),
lower_quartile = quantile(Comprehension, 0.25),
median = median(Comprehension),
upper_quartile = quantile(Comprehension, 0.75),
max = max(Comprehension))
kable(comp_summ)
Condition | sample_size | mean | sd | minimum | lower_quartile | median | upper_quartile | max |
---|---|---|---|---|---|---|---|---|
After | 19 | 3.21 | 1.40 | 1 | 2.0 | 3 | 4 | 6 |
Before | 19 | 4.95 | 1.31 | 2 | 4.0 | 5 | 6 | 7 |
None | 19 | 3.37 | 1.26 | 1 | 2.5 | 3 | 4 | 6 |
The boxplot below also shows the mean for each group highlighted by the red dots.
qplot(x = Condition, y = Comprehension, data = comp, geom = "boxplot") +
stat_summary(fun.y = "mean", geom = "point", color = "red")
We are looking to see if a difference exists in the mean comprehension of the three levels of the explanatory variable. Based solely on the boxplot, we have reason to believe that a difference exists, but the overlap of the boxplots is a bit concerning.
Remember that in order to use the short-cut (formula-based, theoretical) approach, we need to check that some conditions are met.
Independent observations: The observations are independent both within and across groups.
This condition is met since students were randomly assigned to be in one of the three groups and were initially randomly selected to be a part of the study.
Approximately normal: The distribution of the response for each group should be normal or the sample sizes should be at least 30.
qplot(x = Comprehension, data = comp, geom = "histogram", facets = ~ Condition, binwidth = 1, color = I("white"))
qplot(sample = Comprehension, data = comp, facets = ~ Condition)
We have some reason to doubt the normality assumption here since both the histograms and the qqplots show some deviation from a normal model fitting the data well for each group.
Constant variance: The variance in the groups is about equal from one group to the next.
This is met by observing the table above. The sd
values are all relatively close and the sample sizes are identical
The test statistic is a random variable based on the sample data. Here, we want to look at the ratio of variability between the groups over the variability within the groups. This measure we will call \(F\) and it represents a measure of the difference in means. A big observed \(F\) ratio corresponds to the variability between groups over-powering the variability within groups. A small observed \(F\) ratio means that the within group variability is much larger than the between group variability.
\(F\) is the defined as the ratio
\[ F = \frac{MSG}{MSE}. \]
Here, \(MSG\) is the within group variability. As a formula,
\[ MSG = \dfrac{\sum_{i = 1}^k n_i (\bar{X}_i - \bar{X})}{k - 1} \] where \(\bar{X}_i\) is the mean for each group \(i\), and \(\bar{X}\) is the overall mean.
Notice that this is very similar to the variance for looking at the group means compared to the overall mean. In other words, this is the between group variability.
Also, note that \(MSE\) can be thought of as a pooled variance estimate, which can be thought as a measure of the within group variability:
\[MSE = \dfrac{\sum_{i, j} (X_{ij} - \bar{X}_j)^2}{n_{total} - k} \]
where \(n_{total} = n_1 + n_2 + \cdots + n_k\) with \(n_i\) being the sample size of group \(i\).
While one could compute this observed test statistic by “hand”, the focus here is on the set-up of the problem and in understanding which formula for the test statistic applies. We can use the inference
function in the oilabs
package to perform this analysis for us. Note that to obtain the F value
given here, you divide the observed \(MSG\) value of 17.53 by the observed \(MSE\) value of 1.75. (The use of the word Residuals
will make more sense when we have covered regression.)
inference(y = comp$Comprehension,
x = comp$Condition,
est = "mean",
type = "ht",
alternative = "greater",
method = "theoretical")
## Response variable: numerical, Explanatory variable: categorical
## Summary statistics:
## n_After = 19, mean_After = 3.21, sd_After = 1.4
## n_Before = 19, mean_Before = 4.95, sd_Before = 1.31
## n_None = 19, mean_None = 3.37, sd_None = 1.26
## H_0: All means are equal.
## H_A: At least one mean is different.
## Analysis of Variance Table
##
## Response: y
## Df Sum Sq Mean Sq F value Pr(>F)
## x 2 35.1 17.53 10 0.0002
## Residuals 54 94.5 1.75
##
## Pairwise tests: t tests with pooled SD
## After Before
## Before 0.0002 NA
## None 0.7144 0.0005
We see here that the \(f_{obs}\) value is around 10 with \(df_G = k - 1 = 3 - 1 = 2\) and \(df_E = n_{total} - k = 57 - 3 = 54\).
The \(p\)-value—the probability of observing an \(F(df_G = 2, df_E = 54)\) value of 10.012 or more in our null distribution—is 0.0002. This can also be calculated in R directly:
1 - pf(10.012, df1 = 2, df2 = 54)
## [1] 0.0002
Note that we could also do this test directly without invoking the inference
function using the aov
and anova
functions. aov
stands for analysis of variance and its form is similar to what is done using the lm
function with linear regression. It fits an analysis of variance model to the data in the same way that lm
fits a linear regression model to the data. anova
displays the resulting ANOVA table for the model fit.
comp_anova <- aov(formula = Comprehension ~ Condition, data = comp)
anova(comp_anova)
## Analysis of Variance Table
##
## Response: Comprehension
## Df Sum Sq Mean Sq F value Pr(>F)
## Condition 2 35.1 17.53 10 0.0002 ***
## Residuals 54 94.5 1.75
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
We, therefore, have sufficient evidence to reject the null hypothesis. Our initial guess that a statistically significant difference existed in the means was backed by this statistical analysis. We have evidence to suggest that student comprehension of an ambiguous prose passage is affected by viewing a picture designed to aid them in their understanding either before or after or not at all.
With the conditions near being (or possibly) violated, one should use randomization to compare our \(p\)-value there with the value here to see if the assumptions may have been violated. One could also assess whether the sampling distribution of the \(F\) statistic matches well with a Fisher’s \(F\) distribution using randomization as well. If the conditions are reasonable, the next step would be to calculate pairwise analyses to better understand the reasons for the rejection of the null hypotheses in the ANOVA.
Tintle, Nathan, Beth Chance, George Cobb, Allan Rossman, Soma Roy, Todd Swanson, and Jill VanderStoep. 2014. Introduction to Statistical Investigations.