5  Hypothesis and equivalence

This chapter introduces two classes of statistical testing procedures: null hypothesis tests and equivalence tests. As we will see, these tests serve different purposes, and they are are versatile technologies which can be applied to parameter estimates, but also to any of the quantities explored in Chapters 6 (predictions), 7 (counterfactual comparisons), and 8 (slopes).

The first strategy to consider is the null hypothesis test. This approach is designed to assess if there is enough evidence to reject the possibility that a population parameter (or function of parameters) takes on a specific value, such as zero. These tests are common in all fields of data analysis; they can help us answer questions such:

  1. Is the effect of a new drug different from the effect of an existing treatment?
  2. Does cognitive-behavioral therapy have a non-zero effect in alleviating depression?
  3. Is there a statistically significant difference in test scores between students who attend public or private schools?

Equivalence tests flip the logic around. Instead of establishing a difference, they are concerned with demonstrating similarity. For instance, in a null hypothesis test the analyst may be interested in showing that a new drug is effective, that its treatment effect is different from zero. In contrast, an equivalence test could show that the drug’s estimated effect is “equivalent” to zero, or to the effect of another drug. Put differently, equivalence testing is used when the researcher aims to show that an observed difference between groups or parameter values is small enough to be negligible in practical terms. This approach is useful to answer questions such as:

  1. Is the effect of a generic drug equivalent to that of the branded version?
  2. Is the effect of a marketing campaign on consumption so small that we can consider it ineffective?
  3. Are the levels of social trust in two different communities equivalent?

This chapter explains how to compute and interpret both hypothesis and equivalence tests using the marginaleffects package.1

To illustrate, we will look at data from a study conducted by Thornton (2008): The demand for, and impact of, learning HIV status. One goal of this randomized controlled trial was to find out if we could encourage people to seek information about their HIV status. The researchers administered HIV tests at home to many study participants in rural Malawi. Then, they randomly assigned some people to receive a small monetary incentive if they were willing to travel to a voluntary counseling and testing center and learn their HIV status.

The outcome of interest is a binary variable, outcome, equal to 1 if a study participant chose to travel to the center, and 0 otherwise. The treatment is a binary variable, incentive, equal is 1 if the participant was part of the treatment arm and received an incentive. In addition, the researchers collected information about people’s distance from the test center, and a numeric identifier for the village in which they live. Finally, they also collected an age variable, which we have aggregated into three groups under the agecat column.

We use the readRDS() function to read the dataset into memory, the head() function to extract the first few rows, and the tt() function from the tinytable package to display results in a good-looking table:

library(marginaleffects)
library(tinytable)
dat <- readRDS("data/hiv.rds")
tt(head(dat), caption = "First rows of the Thornton (2008) dataset.")
First rows of the Thornton (2008) dataset.
village outcome distance amount incentive age hiv2004 agecat
43 1 0.5485229 0 0 14 0 {
117 0 0.8402644 0 0 14 0 {
2 0 3.3421636 0 0 15 0 {
6 0 2.3228946 0 0 15 0 {
11 0 1.3862627 0 0 15 0 {
14 0 3.8656266 0 0 15 0 {

After analyzing these data, Thornton (2008) concluded 34% of participants in the control group sought to learn their HIV status. In contrast, a small monetary incentive doubled this proportion. Simply put, the intervention proved to be highly successful and cost effective.

Over the next few chapters, we will use the marginaleffects package to analyze various aspects of Thornton’s data. Here, we begin by focusing on this research question: Do minors, young adults, and older adults have different propensities to seek information about their HIV status?

To answer this question, let us consider a linear probability model with the binary outcome as dependent variable and each level of the agecat variable as predictors:

\[ \text{Outcome} = \beta_1 \cdot \text{Age}_{<18} + \beta_2 \cdot \text{Age}_{18-35} + \beta_3 \cdot \text{Age}_{>35} + \varepsilon \tag{5.1}\]

We use the lm() function to estimate the model via ordinary least squares, adding -1 to the model formula to suppress the usual intercept. We then call coef() to extract the vector of coefficient estimates:

mod <- lm(outcome ~ agecat - 1, data = dat)
coef(mod)
  agecat<18 agecat18-35   agecat>35 
  0.6718750   0.6787004   0.7277354 

Because there is no other predictor in the model, and since we intentionally dropped the intercept, the coefficients associated with agecat levels measure the average outcome in each age category. Indeed, the estimated coefficients printed above are exactly identical to subgroup means calculated in-sample using the aggregate() function:

aggregate(outcome ~ agecat, FUN = mean, data = dat)
  agecat   outcome
1    <18 0.6718750
2  18-35 0.6787004
3    >35 0.7277354

At first glance, it looks like the probability that a young adult (18-35) will seek information about their HIV status is smaller than the probability for older adults (>35): 67.9% vs. 72.8%. In the rest of this chapter, we will conduct hypothesis and equivalence tests on these coefficient estimates.

Before moving on, it is important to note that the concepts and techniques surveyed in this chapter apply to all the quantities that we study in this book: parameter estimates, predictions, counterfactual comparisons, slopes, and more. When you are done reading Part II of the book, you will not only be able to compute these quantities, but also to conduct a wide variety of meaningful statistical tests on them.

5.1 Null hypothesis

The null hypothesis test is a fundamental statistical method used to determine if there is sufficient evidence to reject a presumed statement about a population parameter. The null hypothesis \(H_0\) represents a default or initial claim, usually suggesting no effect or no difference in the parameter of interest. For example, \(H_0\) might state that the mean of a population is equal to a specific value, or that there is no association between two variables.

After choosing \(H_0\), the analyst calculates a test statistic from the sample data, and compares it to a critical value derived from the sampling distribution of that test statistic under \(H_0\). If the test statistic falls in a critical region, typically in the tails of its distribution, we conclude that there is enough evidence to reject \(H_0\).

Most statistics textbooks discuss the theory of null hypothesis testing.2 The present chapter is more practical: it illustrates how to use the marginaleffects to conduct linear or non-linear tests on model parameters or on functions of those parameters. We use the standard Wald approach and construct \(z\) statistics of this form:

\[ z=\frac{h(\hat{\theta})-H_0}{\sqrt{\hat{V}[h(\hat{\theta})]}}, \tag{5.2}\]

where \(\hat{\theta}\) is a vector of parameter estimates, and \(h(\hat{\theta})\) is a function of those estimates, such as a prediction, counterfactual comparison, or slope. \(H_0\) is our null hypothesis and \(\hat{V}[h(\hat{\theta})]\) is the estimated variance of the quantity of interest.3

When \(|z|\) is large, we can reject the null hypothesis that \(h(\hat{\theta})=H_0\). The intuition is straightforward. First, the numerator of Equation 5.2 measures the distance between our estimated parameters and the null hypothesis. When that distance is large, the observed data is far from the null hypothesis, which makes it seem more unlikely. Second, the denominator quantifies the uncertainty in our estimate. When that uncertainty is small, our estimate is precise, and thus more likely to allow us to discriminate against the null hypothesis. In other words, when the numerator is large and/or the denominator is small, the \(z\) statistic will be large (in absolute value), and we can reject the null hypothesis \(H_0\).

When we estimated the model in Equation 5.1, we obtained these results:

summary(mod)
            Estimate Std. Error t value Pr(>|t|)
agecat<18    0.67188    0.02564   26.20   <0.001
agecat18-35  0.67870    0.01233   55.06   <0.001
agecat>35    0.72774    0.01336   54.48   <0.001

By default, the summary functions in R and Python report null hypothesis tests against a very specific null hypothesis: that a coefficient is equal to zero. For example, in the results printed above, R reported the estimate and standard error for the first coefficient (\(\hat{\beta_1}\)), along with a test statistic4 associated to the null hypothesis that this coefficient is equal to zero (\(H_0: \beta_1=0\)):

\[ z = \frac{\hat{\beta_1}-H_0}{\sqrt{\hat{V}[\beta_1]}} = \frac{0.67188 - 0}{0.02564} = 26.20 \tag{5.3}\]

Equation 5.3 shows how to compute the test statistic reported by our software package. But does the corresponding test make sense from a substantive perspective? Is it interesting? Do we really need a formal test to reject the null hypothesis that 0% of people below the age 18 are willing to retrieve their HIV test result from the clinic? If the answer to any of those questions is “no”, we can easily construct alternative test statistics with the marginaleffects package.

5.1.1 Choice of null hypothesis

In many cases, including ours, a null hypothesis of zero hardly makes sense. Instead, analysts may want to specify a different value of \(H_0\) to test against a more meaningful benchmark. For example, we could ask: Can we reject the null hypothesis that the probability of retrieving one’s HIV test result is different from a coin flip?

To answer this question, we use the hypotheses() function and its hypothesis argument:

hypotheses(mod, hypothesis = 0.5)
Term Estimate Std. Error z Pr(>|z|) 2.5 % 97.5 %
agecat 0.672 0.0256 6.7 0.622 0.722
agecat18-35 0.679 0.0123 14.5 0.655 0.703
agecat>35 0.728 0.0134 17.0 0.702 0.754

The results show that all three \(z\) statistics are large (in absolute terms). Therefore, we can reject the null hypotheses that these coefficients are equal to 0.5.5 If the true chances of seeking information about HIV status were 50/50, we would be very unlikely to observe data like these.

This conclusion is consonant with Wald-style \(p\) values, which we compute by estimating the area under the tails of the test statistic’s distribution. In R, the pnorm(x) function measures the area under the normal distribution to the left of x. The two-tailed \(p\) value associated to the first coefficient can thus be computed as:

b <- coef(mod)[1]
se <- sqrt(diag(vcov(mod)))[1]
z <- (b - .5) / se
pnorm(-abs(z)) * 2
   agecat<18 
2.043492e-11 

\(p\) is extremely small, which means that we can reject the null hypothesis of \(H_0: \beta_1=0.5\).

5.1.2 Linear and non-linear hypothesis tests

In many contexts, analysts are not solely interested in testing against a simple numeric null hypothesis like 0 or 0.5. Instead, they might be interested in comparing different estimated quantities. For instance, we may want to test if the coefficient associated to the first age category is equal to the coefficient associated to the third age category, \(H_0:\beta_1=\beta_3\).

To conduct this test, all we need to do is supply an equation-style string to the hypothesis argument. The terms of this equation start with b, followed by the position (or index) of the estimate. If we are interested in comparing the first and third coefficients, the equation must include b1 and b3:

hypotheses(mod, hypothesis = "b3 - b1 = 0")
Estimate Std. Error z Pr(>|z|) 2.5 % 97.5 %
0.0559 0.0289 1.93 0.0534 -0.000808 0.113

This is equivalent to computing the difference between the third and first estimated coefficients:

\[ 0.7277354 - 0.671875 = 0.0558604 \]

The \(p\) value for this test is 0.053, which is close to one conventional threshold of statistical significance: 0.05. Researchers who are especially sensitive to Type 1 errors6 may select a more stringent statistical significance threshold and conclude that they cannot reject the null. They would conclude we cannot reject possibility that the probability of seeking one’s HIV result is the same in the <18 and >35 groups.

Instead of a difference, we could also conduct a test against the null hypothesis that the ratio of \(\beta_3\) to \(\beta_1\) is equal to 0:

hypotheses(mod, hypothesis = "b3 / b1 = 0")
Estimate Std. Error z Pr(>|z|) 2.5 % 97.5 %
1.08 0.0459 23.6 0.993 1.17

The estimated ratio is \(\hat{\beta}_3 / \hat{\beta}_1 =1.08\). The \(z\) statistic is large, which gives us license to reject the null hypothesis that the ratio is equal to 0. Of course, this null hypothesis is not particularly meaningful in the ratio case.

A more relevant null hypothesis would be: \(\hat{\beta}_3 / \hat{\beta}_1 = 1\). If the left-hand side ratio is different from 1 (our null hypothesis), then we can reject the null hypothesis that the two coefficients are the same. We can test this by modifying the hypothesis argument slightly:

hypotheses(mod, hypothesis = "b3 / b1 = 1")
Estimate Std. Error z Pr(>|z|) 2.5 % 97.5 %
0.0831 0.0459 1.81 0.0699 -0.00676 0.173

The equations supported by the hypothesis argument are not limited to simple tests of equality, differences, or ratios. Indeed, the user can write equations with more than two estimates, or with various (potentially non-linear) transformations. For example:

hypotheses(mod, hypothesis = "b2^2 * exp(b1) = 0")
hypotheses(mod, hypothesis = "b1 - (b2 * b3) = 2")

marginaleffects also offers a formula-based interface which acts as a shortcut to some of the more common hypothesis tests. For example, if we want to compute the difference between every coefficient and the “reference” quantity (i.e., the first estimate), we supply a formula with the word “reference” on the right side of the tilde symbol (~):

hypotheses(mod, hypothesis = ~ reference)
Term Estimate Std. Error z Pr(>|z|) 2.5 % 97.5 %
(agecat18-35) - (agecat 0.00683 0.0285 0.24 0.8104 -0.048936 0.0626
(agecat>35) - (agecat 0.05586 0.0289 1.93 0.0534 -0.000808 0.1125

Now, let’s say we want to compare each coefficient to the one that immediately precedes: the young adults to the minors, and the older adults to the young adults. Futher suppose we want to compute ratio of coefficients, instead of differences. We can achieve this by setting ratio on the left-hand side, and sequential on the right-hand side of the formula.

hypotheses(mod, hypothesis = ratio ~ sequential)
Term Estimate Std. Error z Pr(>|z|) 2.5 % 97.5 %
(agecat18-35) / (agecat 1.01 0.0427 23.7 0.926 1.09
(agecat>35) / (agecat18-35) 1.07 0.0277 38.7 1.018 1.13

5.2 Equivalence

In many contexts, analysts are less interested in rejecting a null hypothesis, and more interested in testing whether an estimate is “inferior”, “superior”, or “equivalent” to a given threshold or interval. For example, medical researchers may wish to determine if the estimated effect of a new treatment is similar to the effect of prior treatments, or if it can be considered “negligible” in terms of “clinical significance.” To answer such questions, we can use non-inferiority, non-superiority, or equivalence tests like the two-one-sided test, or TOST (Wellek 2010; Rainey 2014; Lakens, Scheel, and Isager 2018).

The TOST equivalence test is a statistical method used to determine if an estimate is “practically equivalent” to a null hypothesis within a specified margin of equivalence. Unlike traditional null hypothesis significance testing, which aims to detect a significant difference between groups, the TOST procedure tests two complementary hypotheses: that the true difference between treatments is either greater than a positive equivalence margin or less than a negative equivalence margin. If both one-sided tests reject these null hypotheses, it provides evidence that the true difference falls within the predefined equivalence bounds, thereby concluding practical equivalence.

To conduct a TOST, one proceeds in five steps:

  1. Quantity of interest: Estimate a quantity of interest \(\theta\), which can be a coefficient, function of coefficients, prediction, counterfactual comparison, slope, etc.
  2. Interval: Use subject matter knowledge to define an interval of equivalence \([a,b]\). If the quantity of interest \(\theta\) falls between \(a\) and \(b\), it is considered clinically or practically irrelevant.
  3. Non-inferiority: Compute the \(p\) value associated with a one-tailed null hypothesis test to determine if we can reject the null hypothesis that \(\theta < a\).
  4. Non-superiority: Compute a \(p\) value associated with a one-tailed null hypothesis test to determine if we can reject the null hypothesis that \(\theta > b\).
  5. Equivalence: Check if the maximum of the non-inferiority and non-superiority \(p\) values is lower than the chosen level of statistical significance (e.g., \(\alpha=0.05\)).

To illustrate, let’s revisit the model we fitted above and compare the probability that people in the \(18-35\) and \(>35\) age brackets will travel to learn their HIV status:

coef(mod)
  agecat<18 agecat18-35   agecat>35 
  0.6718750   0.6787004   0.7277354 
hypotheses(mod, hypothesis = "b3 - b2 = 0")
Estimate Std. Error z Pr(>|z|) 2.5 % 97.5 %
0.049 0.0182 2.7 0.00698 0.0134 0.0847

The results above show that the estimated difference in coefficients for the two groups is equal to 0.0490, and that this difference is statistically significant (i.e., likely different from zero). This difference may be “statistically significant”, but is it “meaningful,” “clinically relevant,” or “practically important”?

The first step to answer this question is to define exactly what we mean by “meaningful” or “important”. Specifically, the researcher must define an “interval of equivalence,” in which estimates are considered unimportant. There is no purely statistical criterion to construct this interval; the decision depends entirely on domain expertise and subject matter knowledge.

In our running example, the researcher could decide that if the difference in \(Pr(\text{outcome}=1)\) between the young and older adults is between -5 and 5 percentage points, we can ignore it. If the difference falls in the \([-0.05,0.05]\) interval, it is “clinically irrelevant” or “equivalent to zero.”

To conduct a TOST on this equivalence range, we simply add the equivalence argument to the previous call:

hypotheses(mod, 
  hypothesis = "b3 - b2 = 0", 
  equivalence = c(-0.05, 0.05))

Estimate Std. Error p (NonSup) p (NonInf) p (Equiv)
0.049 0.0182 0.479 0.479

These results allow us to reach three main conclusions:

  1. Non-inferiority: The \(p\) value associated to this test is very small (\(p<0.001\)). We can reject the null hypothesis that the difference between coefficients is lower than \(-0.05\).
  2. Non-superiority: The \(p\) value associated to this test is large (0.479). We cannot reject the null hypothesis that the difference between coefficients is larger than \(0.05\).
  3. Equivalence: The \(p\) value associated to the TOST of equivalence corresponds to the maximum of the non-superiority and non-superiority values: 0.479. Again, we cannot reject the null hypothesis that the two coefficients are practically equivalent to each other.

In the next chapters, we will show how null hypothesis and equivalence tests can be applied beyond simple coefficient estimates, to quantities like predictions, counterfactual comparisons, and slopes.


  1. Wald-style null hypothesis tests are described in most statistical textbooks. Readers who want to learn more about equivalence testing can refer to the book length treatment by Wellek (2010), or to articles by Rainey (2014) and Lakens, Scheel, and Isager (2018).↩︎

  2. See for example Cameron and Trivedi (2005, sec. 7.2), Aronow and Miller (2019, sec. 3.4), Hansen (2022b), Hansen (2022a), and Wasserman (2004).↩︎

  3. As described in Section 4.4.1, the default strategy for null hypothesis tests in marginaleffects is to compute standard errors using the delta method. That section also explains how to use bootstrap or simulations instead.↩︎

  4. By default, R reports \(t\), which is equivalent to \(z\) in large samples.↩︎

  5. TODO: See below for a discussion of joint hypothesis tests. marginaleffects also allows for multiple comparisons adjustment via the p_adjust argument.↩︎

  6. A Type 1 error, or false positive, occurs when we reject the null hypothesis where it is actually true.↩︎