Skip to contents

linear_contrast reports confidence intervals and (optionally) p-values for linear contrasts of regression coefficients from a fitted model, using a sandwich estimator for the standard errors and (optionally) a small sample correction for the critical values. The default small-sample correction is based on a Satterthwaite approximation.

Usage

linear_contrast(
  obj,
  vcov,
  contrasts,
  level = 0.95,
  test = "Satterthwaite",
  ...,
  p_values = FALSE
)

Arguments

obj

Fitted model for which to calculate confidence intervals.

vcov

Variance covariance matrix estimated using vcovCR or a character string specifying which small-sample adjustment should be used to calculate the variance-covariance.

contrasts

A contrast matrix, or a list of multiple contrast matrices to test. See details and examples.

level

Desired coverage level for confidence intervals.

test

Character vector specifying which small-sample corrections to calculate. "z" returns a z test (i.e., using a standard normal reference distribution). "naive-t" returns a t test with m - 1 degrees of freedom, where m is the number of unique clusters. "naive-tp" returns a t test with m - p degrees of freedom, where p is the number of regression coefficients in obj. "Satterthwaite" returns a Satterthwaite correction. Unlike in coef_test(), "saddlepoint" is not currently supported in conf_int() because saddlepoint confidence intervals do not have a closed-form solution.

...

Further arguments passed to vcovCR, which are only needed if vcov is a character string.

p_values

Logical indicating whether to report p-values. The default value is FALSE.

Value

A data frame containing estimated contrasts, standard errors, confidence intervals, and (optionally) p-values.

Details

Constraints can be specified directly as q X p matrices or indirectly through constrain_pairwise, constrain_equal, or constrain_zero.

See also

Examples


data("ChickWeight", package = "datasets")
lm_fit <- lm(weight ~ 0 + Diet + Time:Diet, data = ChickWeight)

# Pairwise comparisons of diet-by-time slopes
linear_contrast(lm_fit, vcov = "CR2", cluster = ChickWeight$Chick, 
                contrasts = constrain_pairwise("Diet.:Time", reg_ex = TRUE))
#>                    Coef. Estimate   SE d.f. Lower 95% CI Upper 95% CI
#>  Diet2:Time - Diet1:Time     1.77 1.49 18.8       -1.349         4.88
#>  Diet3:Time - Diet1:Time     4.58 1.35 18.8        1.751         7.41
#>  Diet4:Time - Diet1:Time     2.87 1.01 18.3        0.757         4.99
#>  Diet3:Time - Diet2:Time     2.81 1.70 18.0       -0.756         6.38
#>  Diet4:Time - Diet2:Time     1.11 1.44 17.9       -1.925         4.14
#>  Diet4:Time - Diet3:Time    -1.71 1.30 17.9       -4.441         1.02


if (requireNamespace("carData", quietly = TRUE)) withAutoprint({

  data(Duncan, package = "carData")
  Duncan$cluster <- sample(LETTERS[1:8], size = nrow(Duncan), replace = TRUE)

  Duncan_fit <- lm(prestige ~ 0 + type + income + type:income + type:education, data=Duncan)
  # Note that type:income terms are interactions because main effect of income is included
  # but type:education terms are separate slopes for each unique level of type

  # Pairwise comparisons of type-by-education slopes
  linear_contrast(Duncan_fit, vcov = "CR2", cluster = Duncan$cluster,
                  contrasts = constrain_pairwise(":education", reg_ex = TRUE),
                  test = "Satterthwaite")
 
  # Pairwise comparisons of type-by-income interactions
  linear_contrast(Duncan_fit, vcov = "CR2", cluster = Duncan$cluster,
                  contrasts = constrain_pairwise(":income", reg_ex = TRUE, with_zero = TRUE),
                  test = "Satterthwaite")
                  
})
#> > data(Duncan, package = "carData")
#> > Duncan$cluster <- sample(LETTERS[1:8], size = nrow(Duncan), replace = TRUE)
#> > Duncan_fit <- lm(prestige ~ 0 + type + income + type:income + type:education, 
#> +     data = Duncan)
#> > linear_contrast(Duncan_fit, vcov = "CR2", cluster = Duncan$cluster, contrasts = constrain_pairwise(":education", 
#> +     reg_ex = TRUE), test = "Satterthwaite")
#>                                  Coef. Estimate    SE d.f. Lower 95% CI
#>  typeprof:education - typebc:education   0.0186 0.375 3.27       -1.121
#>    typewc:education - typebc:education   0.1068 0.215 3.46       -0.529
#>  typewc:education - typeprof:education   0.0882 0.208 3.20       -0.552
#>  Upper 95% CI
#>         1.158
#>         0.742
#>         0.729
#> > linear_contrast(Duncan_fit, vcov = "CR2", cluster = Duncan$cluster, contrasts = constrain_pairwise(":income", 
#> +     reg_ex = TRUE, with_zero = TRUE), test = "Satterthwaite")
#>                            Coef. Estimate    SE d.f. Lower 95% CI Upper 95% CI
#>                  typeprof:income -0.36914 0.313 3.13       -1.341        0.603
#>                    typewc:income -0.36031 0.191 2.53       -1.036        0.316
#>  typewc:income - typeprof:income  0.00883 0.261 2.77       -0.863        0.881