Inference for Two Independent Means

How diff-different(sic) are you?

Arvind V.

2022-11-22

To be nobody but myself – in a world which is doing its best, night and day, to make you everybody else – means to fight the hardest battle which any human being can fight, and never stop fighting.

— E.E. Cummings, poet (14 Oct 1894-1962)

Setting up R Packages

library(tidyverse)
library(mosaic) # Our go-to package
library(ggformula)
library(infer) # An alternative package for inference using tidy data
library(broom) # Clean test results in tibble form
library(skimr) # data inspection
library(tinytable) # Pretty Tables
library(kableExtra) # Pretty Tables
library(ggprism) # Prism-like ggplot themes
##
library(visStatistics) # All-in-one Stats test package
##
library(resampledata3) # Datasets from Chihara and Hesterberg's book
library(openintro) # datasets

Plot Fonts and Theme

Code
library(systemfonts)
library(showtext)
## Clean the slate
systemfonts::clear_local_fonts()
systemfonts::clear_registry()
##
showtext_opts(dpi = 96) # set DPI for showtext
sysfonts::font_add(
  family = "Alegreya",
  regular = "../../../../../../fonts/Alegreya-Regular.ttf",
  bold = "../../../../../../fonts/Alegreya-Bold.ttf",
  italic = "../../../../../../fonts/Alegreya-Italic.ttf",
  bolditalic = "../../../../../../fonts/Alegreya-BoldItalic.ttf"
)

sysfonts::font_add(
  family = "Roboto Condensed",
  regular = "../../../../../../fonts/RobotoCondensed-Regular.ttf",
  bold = "../../../../../../fonts/RobotoCondensed-Bold.ttf",
  italic = "../../../../../../fonts/RobotoCondensed-Italic.ttf",
  bolditalic = "../../../../../../fonts/RobotoCondensed-BoldItalic.ttf"
)
showtext_auto(enable = TRUE) # enable showtext
##
theme_custom <- function() {
  theme_bw(base_size = 10) +

    # theme(panel.widths = unit(11, "cm"),
    #       panel.heights = unit(6.79, "cm")) + # Golden Ratio

    theme(
      plot.margin = margin_auto(t = 1, r = 2, b = 1, l = 1, unit = "cm"),
      plot.background = element_rect(
        fill = "bisque",
        colour = "black",
        linewidth = 1
      )
    ) +

    theme_sub_axis(
      title = element_text(
        family = "Roboto Condensed",
        size = 10
      ),
      text = element_text(
        family = "Roboto Condensed",
        size = 8
      )
    ) +

    theme_sub_legend(
      text = element_text(
        family = "Roboto Condensed",
        size = 6
      ),
      title = element_text(
        family = "Alegreya",
        size = 8
      )
    ) +

    theme_sub_plot(
      title = element_text(
        family = "Alegreya",
        size = 14, face = "bold"
      ),
      title.position = "plot",
      subtitle = element_text(
        family = "Alegreya",
        size = 10
      ),
      caption = element_text(
        family = "Alegreya",
        size = 6
      ),
      caption.position = "plot"
    )
}

## Use available fonts in ggplot text geoms too!
ggplot2::update_geom_defaults(geom = "text", new = list(
  family = "Roboto Condensed",
  face = "plain",
  size = 3.5,
  color = "#2b2b2b"
))
ggplot2::update_geom_defaults(geom = "label", new = list(
  family = "Roboto Condensed",
  face = "plain",
  size = 3.5,
  color = "#2b2b2b"
))

ggplot2::update_geom_defaults(geom = "marquee", new = list(
  family = "Roboto Condensed",
  face = "plain",
  size = 3.5,
  color = "#2b2b2b"
))
ggplot2::update_geom_defaults(geom = "text_repel", new = list(
  family = "Roboto Condensed",
  face = "plain",
  size = 3.5,
  color = "#2b2b2b"
))
ggplot2::update_geom_defaults(geom = "label_repel", new = list(
  family = "Roboto Condensed",
  face = "plain",
  size = 3.5,
  color = "#2b2b2b"
))

## Set the theme
ggplot2::theme_set(new = theme_custom())

## tinytable options
options("tinytable_tt_digits" = 2)
options("tinytable_format_num_fmt" = "significant_cell")
options(tinytable_html_mathjax = TRUE)


## Set defaults for flextable
flextable::set_flextable_defaults(font.family = "Roboto Condensed")

Introduction

Sometimes, we need to compare if two distinct populations have the same mean. For instance we may wish to compare salaries between two different professions, or test scores between two different teaching methods. In this case, we take a sample ( not necessarily of equal length ) from each population, and compare the means of the two samples.

Here is a diagram showing the workflow of this test based on the kind of data samples we encounter.

flowchart TD
    A[Inference for Two Independent Means] -->|Check Assumptions| B[Normality: Shapiro-Wilk Test shapiro.test Variances: Fisher F-test var.test]
    B --> C{OK?}
    C -->|Yes, both Parametric| D[t.test]
    C -->|Yes, but not variance Parametric| W[t.test with Welch Correction]
    C -->|No Non-Parametric| E[wilcox.test]
    E <--> G[Linear Model with Signed-Ranks]
    C -->|No Non-Parametric| P[Bootstrap or Permutation]

Case Study #1: Math Anxiety

Let us look at the MathAnxiety dataset from the package resampledata. Here we have “anxiety” scores for boys and girls, for different components of mathematics.

Inspecting and Charting Data

data("MathAnxiety", package = "resampledata")
glimpse(MathAnxiety)
skimr::skim(MathAnxiety) %>%
  tt() %>%
  theme_striped(font) %>%
  style_tt(fontsize = 0.75)
Rows: 599
Columns: 6
$ Age    <dbl> 137.8, 140.7, 137.9, 142.8, 135.6, 135.0, 133.6, 139.3, 131.7, …
$ Gender <fct> Boy, Boy, Girl, Girl, Boy, Girl, Boy, Boy, Girl, Boy, Boy, Boy,…
$ Grade  <fct> Secondary, Secondary, Secondary, Secondary, Secondary, Secondar…
$ AMAS   <int> 9, 18, 23, 19, 23, 27, 22, 17, 28, 20, 16, 20, 21, 36, 16, 27, …
$ RCMAS  <int> 20, 8, 26, 18, 20, 33, 23, 11, 32, 30, 10, 4, 23, 26, 24, 21, 3…
$ Arith  <int> 6, 6, 5, 7, 1, 1, 4, 7, 2, 6, 2, 5, 2, 6, 2, 7, 2, 4, 7, 3, 8, …
Table 1: Math Anxiety Dataset
skim_type skim_variable n_missing complete_rate factor.ordered factor.n_unique factor.top_counts numeric.mean numeric.sd numeric.p0 numeric.p25 numeric.p50 numeric.p75 numeric.p100 numeric.hist
factor Gender 0 1 FALSE 2 Boy: 323, Gir: 276 NA NA NA NA NA NA NA NA
factor Grade 0 1 FALSE 2 Pri: 401, Sec: 198 NA NA NA NA NA NA NA NA
numeric Age 0 1 NA NA NA 125 22 3.7 106 121 142 188 ▁▁▇▇▃
numeric AMAS 0 1 NA NA NA 22 6.6 4 18 22 26 45 ▂▆▇▃▁
numeric RCMAS 0 1 NA NA NA 19 7.6 1 14 19 25 41 ▂▇▇▅▁
numeric Arith 0 1 NA NA NA 5.3 2.1 0 4 6 7 8 ▂▃▃▇▇

Data Dictionary

The MathAnxiety dataset contains data on students’ anxiety levels, with ~600 data observations.

Quantitative Data

  • Age: Age of the student (in years)
  • AMAS: Anxiety score from the Abbreviated Math Anxiety Scale (AMAS)
  • RCMAS: Anxiety score from the Revised Children’s Manifest Anxiety Scale (RCMAS)
  • Arith: Score on Arithmetic Test

Qualitative Data

  • Gender: Boy / Girl
  • Grade: Grade level of the student (e.g., 5th, 6th, etc.)

Hypothesis and Research Questions

  • The target variable-s for an experiment that resulted in this data might be either of the two Anxiety-related scores.

Research Question

  • Is there a difference between Boy and Girl “anxiety” levels for AMAS (test) in the population from which the MathAnxiety dataset is a sample?
  • Ditto for the RCMAS scores
  • Apropos: We may also be interested in the correlation between the anxiety-related variables and the Arith score obtained, and if it differs between Boys and Girls.

Graphs

First, histograms, densities and counts of the variable we are interested in, after converting data into long format:

Code
MathAnxiety %>% count(Gender)
MathAnxiety %>%
  group_by(Gender) %>%
  summarise(mean = mean(AMAS), n = n())
Code
# Set graph theme
theme_set(new = theme_custom())

# https://www.statology.org/r-geom_path-each-group-consists-of-only-one-observation/
MathAnxiety %>%
  gf_density(
    ~AMAS,
    fill = ~Gender, colour = ~Gender,
    alpha = 0.5,
    title = "AMAS Math Anxiety Score Densities",
    subtitle = "Boys vs Girls"
  )
##
MathAnxiety %>%
  pivot_longer(
    cols = -c(Gender, Age, Grade),
    names_to = "type",
    values_to = "value"
  ) %>%
  dplyr::filter(type == "AMAS") %>%
  gf_jitter(
    value ~ Gender,
    group = ~type, color = ~Gender,
    width = 0.08, alpha = 0.3,
    ylab = "AMAS Anxiety Scores",
    title = "AMAS Math Anxiety Score Jitter Plots",
    subtitle = "Illustrating Difference in Means"
  ) %>%
  gf_summary(
    group = ~1, # Damn!!! Look at the reference link above
    fun = "mean", geom = "line",
    colour = ~"MeanDifferenceLine",
    lty = 1, linewidth = 2
  ) %>%
  gf_summary(geom = "point", size = 3, colour = "black") %>%
  gf_refine(scale_x_discrete(
    breaks = c("Boy", "Girl"),
    labels = c("Boys", "Girls"),
    guide = guide_prism_bracket(width = 0.1, outside = FALSE)
  )) %>%
  gf_annotate(x = 0.65, y = 25, geom = "text", label = "Mean\n Boys' Anxiety Scores", family = "Roboto Condensed") %>%
  gf_annotate(x = 2.35, y = 25, geom = "text", label = "Mean\n Girls' Anxiety Scores", family = "Roboto Condensed") %>%
  gf_annotate(x = 1.5, y = 30, geom = "label", label = "Mean Difference Line\nSlope indicates\n differences in mean", fill = "moccasin", family = "Roboto Condensed") %>%
  gf_theme(theme(legend.position = "none", axis.line.x = element_line(linewidth = 1)))
(a) AMAS Anxiety Score Densities
(b) AMAS Anxiety Score Jitter Plot
Figure 1: AMAS Anxiety Score graphs

The distributions for anxiety scores for boys and girls overlap considerably and are very similar, though the jitter plot for boys shows significant outliers. Are they close to being normal distributions too? We should check.

A. Check for Normality

Statistical tests for means usually require a couple of checks1 2:

  • Are the data normally distributed?
  • Are the data variances similar?

Let us complete a check for normality: the shapiro.wilk test checks whether a Quant variable is from a normal distribution; the NULL hypothesis is that the data are from a normal distribution. We will also look at Q-Q plots for both variables:

Code
# Set graph theme
theme_set(new = theme_custom())
#
MathAnxiety %>%
  gf_density(~AMAS,
    fill = ~Gender,
    alpha = 0.5,
    title = "Math Anxiety scores for boys and girls"
  ) %>%
  gf_facet_grid(~Gender) %>%
  gf_fitdistr(dist = "dnorm") %>%
  gf_theme(theme(legend.position = "none")) # No Need!!
##
MathAnxiety %>%
  gf_qqline(~AMAS,
    color = ~Gender,
    title = "Math Anxiety Scores..",
    subtitle = "Are they Normally Distributed?"
  ) %>%
  gf_qq() %>%
  gf_facet_wrap(~Gender) %>% # independent y-axis

  gf_theme(theme(legend.position = "none")) # No Need!!
(a) AMAS Anxiety Score Densities
(b) AMAS Anxiety Score Q-Q Plots
Figure 2: AMAS Anxiety Score Normality Check

Let us split the dataset into subsets, to execute the normality check test (Shapiro-Wilk test):

boys_AMAS <- MathAnxiety %>%
  filter(Gender == "Boy") %>%
  select(AMAS)
##
girls_AMAS <- MathAnxiety %>%
  filter(Gender == "Girl") %>%
  select(AMAS)
shapiro.test(boys_AMAS$AMAS)
shapiro.test(girls_AMAS$AMAS)

    Shapiro-Wilk normality test

data:  boys_AMAS$AMAS
W = 0.99043, p-value = 0.03343

    Shapiro-Wilk normality test

data:  girls_AMAS$AMAS
W = 0.99074, p-value = 0.07835

The distributions for anxiety scores for boys and girls are almost normal, visually speaking. With the Shapiro-Wilk test we find that the scores for girls are normally distributed, but the boys scores are not so. Tch, tch. These boys.

Note

The p.value obtained in the shapiro.wilk test suggests the chances of the data being so, given the Assumption that they are normally distributed.

We see that MathAnxiety contains discrete-level scores for anxiety for the two variables (for Boys and Girls) anxiety scores. The boys score has a significant outlier, which we saw earlier and perhaps that makes that variable lose out, perhaps narrowly.

B. Check for Variances

Let us check if the two variables have similar variances: the var.test does this for us, with a NULL hypothesis that the variances are not significantly different:

MathAnxiety %>%
  dplyr::select(AMAS, Gender) %>%
  dplyr::group_by(Gender) %>%
  dplyr::summarize(variance = var(AMAS), n = n())

var.test(AMAS ~ Gender,
  data = MathAnxiety,
  conf.int = TRUE, conf.level = 0.95
) %>%
  broom::tidy()
##
qf(0.975, 275, 322)
[1] 1.254823

The variances are quite similar as seen by the \(p.value = 0.82\). We also saw it visually when we plotted the overlapped distributions earlier.

Conditions:

  1. The two variables are not both normally distributed.
  2. The two variances are significantly similar.

Hypothesis

Based on the graphs, how would we formulate our Hypothesis? We wish to infer whether there is any difference in the mean anxiety score between Girls and Boys, in the population from which the dataset MathAnxiety has been drawn. So accordingly:

\[ H_0: \mu_{Boys} - \mu_{Girls} = 0\\ \]

\[ H_a: \mu_{Boys} - \mu_{Girls} \ne 0\\ \]

Observed and Test Statistic

What would be the test statistic we would use? The difference in means. Is the observed difference in the means between the two groups of scores non-zero? We use the diffmean function:

obs_diff_amas <- diffmean(AMAS ~ Gender, data = MathAnxiety)
obs_diff_amas
diffmean 
  1.7676 

Girls’ AMAS anxiety scores are, on average, \(1.76\) points higher than those for Boys in the dataset/sample.

On Observed Difference Estimates

Different tests here will show the difference as positive or negative, but with the same value! This depends upon the way the factor variable Gender is used, i.e. Boy-Girl or Girl-Boy…

Inference

All Tests Together

We can put all the test results together to get a few more insights about the tests:

Code
mosaic::t_test(AMAS ~ Gender,
  data = MathAnxiety
) %>%
  broom::tidy() %>%
  kableExtra::kbl() %>%
  kableExtra::kable_paper(full_width = F, html_font = "Roboto Condensed") %>%
  kableExtra::column_spec(5, width = "20em", bold = T, background = "gold")


wilcox.test(AMAS ~ Gender,
  data = MathAnxiety
) %>%
  broom::tidy() %>%
  kableExtra::kbl() %>%
  kableExtra::kable_paper(full_width = F, html_font = "Roboto Condensed") %>%
  kableExtra::column_spec(2, width = "10em", bold = T, background = "gold")

lm(AMAS ~ Gender,
  data = MathAnxiety
) %>%
  broom::tidy(
    conf.int = TRUE,
    conf.level = 0.95,
  ) %>%
  kableExtra::kbl() %>%
  kableExtra::kable_paper(full_width = F, html_font = "Roboto Condensed") %>%
  kableExtra::column_spec(1, bold = T, border_right = T) %>%
  kableExtra::column_spec(5, width = "10em", bold = T, background = "gold")

lm(rank(AMAS) ~ Gender,
  data = MathAnxiety
) %>%
  broom::tidy(
    conf.int = TRUE,
    conf.level = 0.95
  ) %>%
  kableExtra::kbl() %>%
  kableExtra::kable_paper(full_width = F, html_font = "Roboto Condensed") %>%
  kableExtra::column_spec(1, bold = T, border_right = T) %>%
  kableExtra::column_spec(5, width = "10em", bold = T, background = "gold")
Table 2: All Tests for AMAS Anxiety Scores
(a) t.test
estimate estimate1 estimate2 statistic p.value parameter conf.low conf.high method alternative
-1.7676 21.16718 22.93478 -3.291843 0.0010558 580.2004 -2.822229 -0.7129706 Welch Two Sample t-test two.sided
(b) wilcox.test
statistic p.value method alternative
37483 0.0007736 Wilcoxon rank sum test with continuity correction two.sided
(c) Linear Model with Original Data
term estimate std.error statistic p.value conf.low conf.high
(Intercept) 21.16718 0.3641315 58.130602 0.0000000 20.4520482 21.882317
GenderGirl 1.76760 0.5364350 3.295087 0.0010422 0.7140708 2.821129
(d) Linear Model with Ranked Data
term estimate std.error statistic p.value conf.low conf.high
(Intercept) 278.04644 9.535561 29.158898 0.0000000 259.31912 296.7738
GenderGirl 47.64559 14.047696 3.391701 0.0007405 20.05668 75.2345

As we can see, all tests are in agreement that there is a significant effect of Gender on the AMAS anxiety scores!

One Test to Rule Them All: visStatistics

We can use the visStatistics package to run all the tests in one go, using the in-built decision tree. This is a very useful package for teaching statistics, and it can be used to run all the tests we have seen so far, and more. Here goes: we use the visstat function to run all the tests, and then we can summarize the results. The visstat function takes a dataset, a quantitative variable, a qualitative variable, and some options for the tests to run.

From the visStatistics package documentation:

visStatistics automatically selects and visualises appropriate statistical hypothesis tests between two column vectors of type of class “numeric”, “integer”, or “factor”. The choice of test depends on the class, distribution, and sample size of the vectors, as well as the user-defined ‘conf.level’. The main function visstat() visualises the selected test with appropriate graphs (box plots, bar charts, regression lines with confidence bands, mosaic plots, residual plots, Q-Q plots), annotated with the main test results, including any assumption checks and post-hoc analyses.

# Generate the annotated plots and statistics
visstat(
  x = MathAnxiety$Gender,
  y = MathAnxiety$AMAS,
  conf.level = 0.95, numbers = TRUE
) %>%
  summary()
Summary of visstat object

--- Named components ---
[1] "dependent variable (response)"    "independent variables (features)"
[3] "t-test-statistics"                "Shapiro-Wilk-test_sample1"       
[5] "Shapiro-Wilk-test_sample2"       

--- Contents ---

$dependent variable (response):
[1] "AMAS"

$independent variables (features):
[1] Boy  Girl
Levels: Boy Girl

$t-test-statistics:

    Welch Two Sample t-test

data:  x1 and x2
t = -3.2918, df = 580.2, p-value = 0.001056
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
 -2.8222293 -0.7129706
sample estimates:
mean of x mean of y 
 21.16718  22.93478 


$Shapiro-Wilk-test_sample1:

    Shapiro-Wilk normality test

data:  x
W = 0.99043, p-value = 0.03343


$Shapiro-Wilk-test_sample2:

    Shapiro-Wilk normality test

data:  x
W = 0.99074, p-value = 0.07835


--- Attributes ---
$plot_paths
character(0)
Figure 7: visStatistics Output for AMAS Anxiety Scores

The tool runs the Welch t-test and declares the p-value to be significant. The Shapiro-Wilk test results here also confirm what we had performed earlier. Hence we can say that we may reject the NULL Hypothesis and state that there is a statistically significant difference in AMAS anxiety scores between Boys and Girls.

An AI Generated Explanation of the Statistical Model

We have used the statlingua package to generate an AI explanation of the statistical model t1_amas we have used in this module. statlingua interfaces to the ellmer package, which in turn interfaces to the ollama API for AI explanations. The AI model used is llama3.1, and the explanation is tailored for a novice audience with moderate verbosity.

AI Generated Explanation

The command was run in the Console and the results pasted into this Quarto document. I have not edited this at all. Do look for complex verbiage and outright hallucinatory responses.

Code
library(ellmer)
library(statlingua)
library(chores)
client <- ellmer::chat_ollama(model = "llama3.1", echo = FALSE)
###

exam_context <- "
The model uses a data set on child Math-related Anxiety scores from the resampledata package in R. The dataset has Age, Gender, Grade, and Arithmeitc test score variables, along with AMS and RCMAS math-anxiety scores.
The hypothesis is that the average Math Anxiety score is no different for Boys and Girls. The model conducted is a two-sample t-test to assess whether the mean of the Math Anxiety scores significantly differ between Boys and Girls."

explanation_amas <- statlingua::explain(t1_amas,
  client = client,
  context = exam_context,
  audience = "novice", verbosity = "moderate"
) # moderate / detailed

Welch Two Sample t-test Output Explanation

The output given represents the results from conducting a Welch Two Sample t-test on the AMAS (Math-Related Anxiety Scale) variable in the dataset, specifically examining differences in mean anxiety scores between boys (Boy) and girls (Girl).

Assumptions and Suitability

Given context, the hypothesis to be tested is that average Math Anxiety scores are no different for Boys and Girls. A Welch Two Sample t-test is chosen, suitable given its independence of observations assumption aligned with the stated dataset properties.

It assumes data follows a normal distribution in each group, though the test itself does not check for normality. However, due to non-homogeneous variance typical in many datasets, a t-test variant specifically designed for such cases, like Welch’s, is preferable over the (more restrictive) homoscedastic t-test.

Output Components
  • data: AMAS by Gender - This indicates that the analysis comparing means of Math anxiety scores (AMAS) between genders (Boy and Girl) generated this output.
  • Test Statistic: The calculated test statistic is t = -3.2918. A negative t-value suggests an average math-anxiety-score difference in a direction favoring girls (higher average score for them), compared to boys.
  • Degrees of Freedom (df): The degrees of freedom associated with this test are df = 580.2. This value is not an integer, which is typical for Welch’s t-test due to its handling of unequal variances among the groups.
  • p-value: The p-value from the output, 0.001056, is considered highly significant at any conventional significance level (e.g., \(\alpha = 0.05\)). This implies the average Math Anxiety score significantly differs between boys and girls according to the test.
  • Alternative Hypothesis: This output supports an alternative hypothesis stating that true differences in means (true difference in means between group Boy and group Girl is not equal to 0). From the research question’s perspective, this confirms that there are significant differing mean Math Anxiety scores for boys and girls.
  • 95% Confidence Interval (CI): Provided a confidence interval which suggests with 95% confidence, the population average math anxiety score difference can fall between -2.8222293 and -0.7129706. Since zero is within this range, one might initially question the interpretation of significant differences based on p-values alone. Hallucination!!!
  • Sample Estimates: Offers summary statistics (means) for individual groups (mean in group Boy = 21.16718, mean in group Girl = 22.93478), highlighting the observed average Math Anxiety scores per gender.
Checking Assumptions and Practical Suggestions

Given this analysis, practical steps to check assumptions include: - Normality of Data: Assess using graphical methods (histograms, Q-Q plots for each group). Check with Shapiro-Wilk test.

If data shows clear indication against normality or from formal tests (e.g., Shapiro-Wilk W-statistic indicates distribution significantly deviates from being normally distributed), consider a non-parametric alternative.

  • Equal Variance Assumption: Since the Welch variant was used here, assessing equal variances isn’t directly necessary with its output. But to check formally, one might use Levene’s Test or Barlett’s test, and if significant, reconsider using Welch’s for a better estimate of effects in such scenarios.
Conclusion

At \(\alpha = 0.001056\), the observed differences (higher mean Math Anxiety among girls than boys) are considered statistically significant. Therefore, based on this analysis and context provided, we have sufficient evidence to reject the null hypothesis that there is no difference in average Math-related Anxiety Scores between boys and girls.

Case Study #2: Youth Risk Behavior Surveillance System (YRBSS) survey

Every two years, the Centers for Disease Control and Prevention in the USA conduct the Youth Risk Behavior Surveillance System (YRBSS) survey, where it takes data from high-schoolers (9th through 12th grade), to analyze health patterns. We will work with a selected group of variables from a random sample of observations during one of the years the YRBSS was conducted. The yrbss dataset is part of the openintro package. Type this in your console: help(yrbss).

Inspecting and Charting Data

data(yrbss, package = "openintro")
yrbss
yrbss_inspect <- inspect(yrbss)
yrbss_inspect$categorical
yrbss_inspect$quantitative

We have 13K data entries, and with 13 different variables, some Qual and some Quant. Many entries are missing too, typical of real-world data and something we will have to account for in our computations. The meaning of each variable can be found by bringing up the help file. Type help(yrbss) in your Console.

First, histograms, densities and counts of the variable we are interested in:

yrbss_select_gender <- yrbss %>%
  select(weight, gender) %>%
  mutate(gender = as_factor(gender)) %>%
  drop_na(weight) # Sadly dropping off NA data
Code
ggplot2::theme_set(new = theme_custom())

yrbss_select_gender %>%
  gf_density(~weight,
    fill = ~gender, colour = ~gender,
    alpha = 0.3,
    title = "Highschoolers' Weights by Gender"
  ) %>%
  gf_refine(scale_fill_brewer(
    name = "Gender", palette = "Set1",
    aesthetics = c("colour", "fill")
  ))

###
yrbss_select_gender %>%
  gf_jitter(weight ~ gender,
    color = ~gender,
    show.legend = FALSE,
    width = 0.05, alpha = 0.25,
    ylab = "Weight",
    title = "Weights of Boys and Girls"
  ) %>%
  gf_summary(
    group = ~1, # See the reference link above. Damn!!!
    fun = "mean", geom = "line", colour = "lightblue",
    lty = 1, linewidth = 2
  ) %>%
  gf_summary(
    fun = "mean", colour = "black",
    size = 4, geom = "point"
  ) %>%
  gf_refine(scale_x_discrete(
    breaks = c("male", "female"),
    labels = c("male", "female"),
    guide = guide_prism_bracket(width = 0.1, outside = FALSE)
  )) %>%
  gf_annotate(
    x = 0.75, y = 60, geom = "text",
    label = "Mean\n Girls' Weights"
  ) %>%
  gf_annotate(
    x = 2.25, y = 60, geom = "text",
    label = "Mean\n Boys' Weights"
  ) %>%
  gf_annotate(
    x = 1.5, y = 100, geom = "label",
    label = "Slope indicates\n differences in mean",
    fill = "moccasin"
  ) %>%
  gf_refine(scale_colour_brewer(name = "Gender", palette = "Set1")) %>%
  gf_theme(theme(legend.position = "none", axis.line.x = element_line(linewidth = 1)))
(a) Overlapped Density Plot
(b) Jitter Plots
Figure 8: Highschoolers’ Weights Distributions
yrbss_select_gender %>% count(gender)

Overlapped Distribution plot shows some difference in the means; and the Jitter plots show visible difference in the means. In this Case Study, our research question is:

Hypothesis

Research Question

Does weight of highschoolers in this dataset vary with gender?

Based on the graphs, how would we formulate our Hypothesis? We wish to infer whether there is difference in mean weight across gender. So accordingly:

\[ H_0: \mu_{weight-male} = \mu_{weight-female} \]

\[ H_a: \mu_{weight-male} \ne \mu_{weight-female} \]

A. Check for Normality

As stated before, statistical tests for means usually require a couple of checks:

  • Are the data normally distributed?
  • Are the data variances similar?

We will complete a visual check for normality with plots, and since we cannot do a shapiro.test (length(data) >= 5000) we can use the Anderson-Darling test.

Let us plot frequency distribution and Q-Q plots1 for both variables.

Code
ggplot2::theme_set(new = theme_custom())

male_student_weights <- yrbss_select_gender %>%
  filter(gender == "male") %>%
  select(weight)
##
female_student_weights <- yrbss_select_gender %>%
  filter(gender == "female") %>%
  select(weight)

# shapiro.test(male_student_weights$weight)
# shapiro.test(female_student_weights$weight)

yrbss_select_gender %>%
  gf_density(~weight,
    fill = ~gender, colour = ~gender,
    alpha = 0.3,
    title = "Highschoolers' Weights by Gender"
  ) %>%
  gf_facet_grid(~gender) %>%
  gf_fitdistr(dist = "dnorm") %>%
  gf_refine(scale_fill_brewer(name = "Gender", palette = "Set1", aesthetics = c("colour", "fill")))
##
yrbss_select_gender %>%
  gf_qqline(~ weight | gender, ylab = "weight", colour = ~gender) %>%
  gf_qq(title = "Q-Q Plots of Male and Female Weights") %>%
  gf_refine(scale_fill_brewer(name = "Gender", palette = "Set1", aesthetics = c("colour", "fill")))
(a) Facetted Densities
(b) Q-Q Plots
Figure 9: Highschoolers’ weights Normality Check

Distributions are not too close to normal…perhaps a hint of a rightward skew, suggesting that there are some obese students.

No real evidence (visually) of the variables being normally distributed.

library(nortest)
nortest::ad.test(male_student_weights$weight)

    Anderson-Darling normality test

data:  male_student_weights$weight
A = 113.23, p-value < 2.2e-16
nortest::ad.test(female_student_weights$weight)

    Anderson-Darling normality test

data:  female_student_weights$weight
A = 157.17, p-value < 2.2e-16

p-values are very low and there is no reason to think that the data is normal.

B. Check for Variances

Let us check if the two variables have similar variances: the var.testdoes this for us, with a NULL hypothesis that the variances are not significantly different:

var.test(weight ~ gender,
  data = yrbss_select_gender,
  conf.int = TRUE,
  conf.level = 0.95
) %>%
  broom::tidy()

# qf(0.975,6164, 6413)

The p.value being so small, we are able to reject the NULL Hypothesis that the variances of weight are nearly equal across the two exercise regimes.

Conditions

  1. The two variables are not normally distributed.
  2. The two variances are also significantly different.

This means that the parametric t.test must be eschewed in favour of the non-parametric wilcox.test. We will use that, and also attempt linear models with rank data, and a final permutation test.

Observed and Test Statistic

What would be the test statistic we would use? The difference in means. Is the observed difference in the means between the two groups of scores non-zero? We use the diffmean function, from mosaic:

obs_diff_gender <- diffmean(weight ~ gender,
  data = yrbss_select_gender
)

obs_diff_gender
diffmean 
11.70089 

Inference

All Tests Together

We can put all the test results together to get a few more insights about the tests:

Code
wilcox.test(weight ~ gender,
  data = yrbss_select_gender,
  conf.int = TRUE,
  conf.level = 0.95
) %>%
  broom::tidy() %>%
  tt() %>%
  style_tt(i = 1, j = 3, background = "gold", color = "black")

lm(rank(weight) ~ gender,
  data = yrbss_select_gender
) %>%
  broom::tidy(
    conf.int = TRUE,
    conf.level = 0.95
  ) %>%
  tt() %>%
  style_tt(i = 1, j = 5, background = "gold", color = "black")
Table 3: All Tests for YRBSS Weights
estimate statistic p.value conf.low conf.high method alternative
-11 10808212 0 -11 -11 Wilcoxon rank sum test with continuity correction two.sided
term estimate std.error statistic p.value conf.low conf.high
(Intercept) 4836 43 114 0 4753 4920
gendermale 2851 60 48 0 2735 2968

The wilcox.test and the linear model with rank data offer the same results. This is of course not surprising!

One Test to Rule Them All: visStatistics again

We need to use a smaller sample of the dataset yrbss_select_gender, for the (same) reason: visstat() defaults to using the shapiro.wilk test internally:

yrbss_select_gender_sample <- yrbss_select_gender %>%
  slice_sample(n = 4999)

visstat(
  x = yrbss_select_gender_sample$gender,
  y = yrbss_select_gender_sample$weight,
  conf.level = 0.95, numbers = TRUE
) %>%
  summary()
Summary of visstat object

--- Named components ---
[1] "dependent variable (response)"    "independent variables (features)"
[3] "t-test-statistics"                "Shapiro-Wilk-test_sample1"       
[5] "Shapiro-Wilk-test_sample2"       

--- Contents ---

$dependent variable (response):
[1] "weight"

$independent variables (features):
[1] male   female
Levels: female male

$t-test-statistics:

    Welch Two Sample t-test

data:  x1 and x2
t = -24.465, df = 4954.8, p-value < 2.2e-16
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
 -12.14354 -10.34172
sample estimates:
mean of x mean of y 
 62.54529  73.78792 


$Shapiro-Wilk-test_sample1:

    Shapiro-Wilk normality test

data:  x
W = 0.88612, p-value < 2.2e-16


$Shapiro-Wilk-test_sample2:

    Shapiro-Wilk normality test

data:  x
W = 0.93065, p-value < 2.2e-16


--- Attributes ---
$plot_paths
character(0)
Figure 11: visStatistics Output for YRBSS Weights Model

Compare these results with those calculated earlier!

Case Study #3: Weight vs Exercise in the YRBSS Survey

Finally, consider the possible relationship between a highschooler’s weight and their physical activity.

First, let’s create a new variable physical_3plus, which will be coded as either “yes” if the student is physically active for at least 3 days a week, and “no” if not. Recall that we have several missing data in that column, so we will (sadly) drop these before generating the new variable:

yrbss_select_phy <- yrbss %>%
  drop_na(physically_active_7d, weight) %>%
  ## add new variable physical_3plus
  mutate(
    physical_3plus = if_else(physically_active_7d >= 3,
      "yes", "no"
    ),
    # Convert it to a factor Y/N
    physical_3plus = factor(physical_3plus,
      labels = c("yes", "no"),
      levels = c("yes", "no")
    )
  ) %>%
  select(weight, physical_3plus)

# Let us check
yrbss_select_phy %>% count(physical_3plus)

Research Question

Does weight vary based on whether students exercise on more or less than 3 days a week? (physically_active_7d >= 3 days)

Inspecting and Charting Data

We can make distribution plots for weight by physical_3plus:

Code
ggplot2::theme_set(new = theme_custom())

###
gf_density(~weight,
  fill = ~physical_3plus, colour = ~physical_3plus,
  data = yrbss_select_phy, alpha = 0.3,
  title = "Highschoolers' Weights by Days of Exercise"
) %>%
  gf_refine(scale_fill_viridis_d(
    name = "Days of Exercise >=3",
    option = "turbo",
    aesthetics = c("colour", "fill")
  ))
##
yrbss_select_phy %>%
  gf_jitter(weight ~ physical_3plus,
    colour = ~physical_3plus,
    width = 0.08, alpha = 0.2,
    xlab = "Days of Exercise >=3",
    title = "Student Weights vs Exercise Days"
  ) %>%
  gf_summary(
    group = ~1, # See the reference link above. Damn!!!
    fun = "mean", geom = "line", colour = "lightblue",
    lty = 1, linewidth = 2
  ) %>%
  gf_summary(fun = "mean", geom = "point", size = 3, colour = "gold") %>%
  gf_refine(scale_x_discrete(
    breaks = c("no", "yes"),
    labels = c("no", "yes"),
    guide = guide_prism_bracket(width = 0.1, outside = FALSE)
  )) %>%
  gf_refine(
    annotate(x = 0.65, y = 60, geom = "text", label = "Mean Weights\n No Exercise"),
    annotate(x = 2.35, y = 60, geom = "text", label = "Mean Weights\nWith Exercise"),
    annotate(x = 1.5, y = 100, geom = "label", label = "Slope indicates\n differences in mean", fill = "moccasin"),
    scale_colour_viridis_d(name = "Days of Exercise >=3", option = "turbo")
  ) %>%
  gf_theme(theme(legend.position = "none", axis.line.x = element_line(linewidth = 1)))
(a) Overlapped Density Plot
(b) Jitter Plots
Figure 12: Highschoolers’ Weights by Days of Exercise

The jitter and density plots show the comparison between the two means. We can also compare the means of the distributions using the following to first group the data by the physical_3plus variable, and then calculate the mean weight in these groups using the mean function while ignoring missing values by setting the na.rm argument to TRUE.

yrbss_select_phy %>%
  group_by(physical_3plus) %>%
  summarise(mean_weight = mean(weight, na.rm = TRUE))

There is an observed difference, but is this difference large enough to deem it “statistically significant”? In order to answer this question we will conduct a hypothesis test. But before that a few more checks on the data:

A. Check for Normality

As stated before, statistical tests for means usually require a couple of checks:

  • Are the data normally distributed?
  • Are the data variances similar?

Let us also complete a visual check for normality,with plots since we cannot do a shapiro.test:

Code
ggplot2::theme_set(new = theme_custom())

yrbss_select_phy %>%
  gf_density(~weight,
    fill = ~physical_3plus, color = ~physical_3plus,
    alpha = 0.5,
    title = "Highschoolers' Weights by Exercise Frequency"
  ) %>%
  gf_facet_grid(~physical_3plus) %>%
  gf_fitdistr(dist = "dnorm") %>%
  gf_refine(scale_fill_viridis_d(
    name = "Days of Exercise >=3",
    option = "turbo",
    aesthetics = c("colour", "fill")
  ))
##
yrbss_select_phy %>%
  gf_qq(~ weight | physical_3plus,
    color = ~physical_3plus,
    title = "Q-Q Plots of Male and Female Weights"
  ) %>%
  gf_qqline(ylab = "Weight") %>%
  gf_refine(scale_fill_viridis_d(
    name = "Days of Exercise >=3",
    option = "turbo",
    aesthetics = c("colour", "fill")
  ))
(a) Facetted Densities
(b) Q-Q Plots
Figure 13: Highschoolers’ Weights Normality Check

Again, not normally distributed…

B. Check for Variances

Let us check if the two variables have similar variances: the var.test does this for us, with a NULL hypothesis that the variances are not significantly different:

var.test(weight ~ physical_3plus,
  data = yrbss_select_phy,
  conf.int = TRUE,
  conf.level = 0.95
) %>%
  broom::tidy()

# Critical F value
qf(0.975, 4021, 8341)
[1] 1.054398

The p.value states the probability of the data being what it is, assuming the NULL hypothesis that variances were similar. It being so small, we are able to reject this NULL Hypothesis that the variances of weight are nearly equal across the two exercise frequencies. (Compare the statistic in the var.test with the critical F-value)

Conditions

  1. The two variables are not normally distributed.
  2. The two variances are also significantly different.

Hence we will have to use non-parametric tests to infer if the means are similar.

Hypothesis

Based on the graphs, how would we formulate our Hypothesis? We wish to infer whether there is difference in mean weight across physical_3plus. So accordingly:

\[ H_0: \mu_{physical-3plus-Yes} = \mu_{physical-3plus-No} \]

\[ H_a: \mu_{physical-3plus-Yes} \ne \mu_{physical-3plus-No} \]

Observed and Test Statistic

What would be the test statistic we would use? The difference in means. Is the observed difference in the means between the two groups of scores non-zero? We use the diffmean function, from mosaic:

obs_diff_phy <- diffmean(weight ~ physical_3plus,
  data = yrbss_select_phy
)

obs_diff_phy
 diffmean 
-1.774584 

Inference

Permutation Tests

For this last Case Study, we will do this in two ways, just for fun: one using our familiar mosaic package, and the other using the package infer.

But first, we need to initialize the test, which we will save as obs_diff_**.

obs_diff_infer <- yrbss_select_phy %>%
  infer::specify(weight ~ physical_3plus) %>%
  infer::calculate(
    stat = "diff in means",
    order = c("yes", "no")
  )
obs_diff_infer
##
obs_diff_mosaic <-
  mosaic::diffmean(~ weight | physical_3plus,
    data = yrbss_select_phy
  )
obs_diff_mosaic
##
obs_diff_phy
 diffmean 
-1.774584 
 diffmean 
-1.774584 

Important

Note that obs_diff_infer is a 1 X 1 dataframe; obs_diff_mosaic is a scalar!!

Clearly there is a serious effect of Physical Exercise on the body weights of students in the population from which this dataset is drawn.

Wait, But Why?

  • In our target population for our design intervention, we often perceive groups
  • We need often to infer differences in some Quantitative variable between these groups
  • We treat our dataset as a sample from the population, which we cannot access
  • We can apply all the CLT ideas +t.test if the two variables in the dataset satisfy the conditions of normality, equal variance
  • Else use non-parametric wilcox.test
  • And by treating the two variables as one Quant in two groups, we can simply perform a Permutation test

Conclusion

  • We have learnt how to perform inference for independent means.
  • We have looked at the conditions that make the regular t.test possible, and learnt what to do if the conditions of normality and equal variance are not met.
  • We have also looked at how these tests can be understood as manifestations of the linear model, with data and sign-ranked data.

Your Turn

  1. Try the SwimRecords dataset from the mosaicData package.

  2. Try some of the datasets in the moderndive package. Install it , peasants. And type in your Console data(package = "moderndive") to see what you have. Teacher evals might interest you!

References

  1. Randall Pruim, Nicholas J. Horton, Daniel T. Kaplan, Start Teaching with R
  2. https://bcs.wiley.com/he-bcs/Books?action=index&itemId=111941654X&bcsId=11307
  3. https://statsandr.com/blog/wilcoxon-test-in-r-how-to-compare-2-groups-under-the-non-normality-assumption/
R Package Citations
Package Version Citation
infer 1.0.9 @infer
openintro 2.5.0 @openintro
resampledata 0.3.2 @resampledata
TeachHist 0.2.1 @TeachHist
TeachingDemos 2.13 @TeachingDemos
tinytable 0.13.0 @tinytable
visStatistics 0.1.7 @visStatistics