the regressinator

The regressinator is a pedagogical tool for conducting simulations of regression analyses and diagnostics. It can:

Or, in other words: We can specify a population with a known relationship between predictors in response, simulate data from that population, fit a model to that data, and simulate data from the model. If the fitted model is misspecified, we can simulate data from the model (where it is correctly specified), and make a lineup to compare the fitted model’s diagnostics to null diagnostics. And we can obtain the population sampling distribution of the misspecified model’s estimates.

Here’s a simple regression example:

library(regressinator)
library(ggplot2)

# true relationship is nonlinear
pop <- population(
  x = predictor("runif", min = -5, max = 5),
  y = response(10 + 0.7 * x**2, family = gaussian(), error_scale = 2)
)

nonlin_sample <- pop |>
  sample_x(n = 20) |>
  sample_y()

fit <- lm(y ~ x, data = nonlin_sample)

model_lineup(fit) |>
  ggplot(aes(x = x, y = .resid)) +
  geom_point() +
  facet_wrap(~ .sample) +
  labs(x = "x", y = "Residual")
## decrypt("23eg MuPu NE KwWNPNwE 5H")

Each of the 20 residual plots represents a simple regression fit. One of the regressions was fit to the simulated data with a nonlinear relationship; the others were fit to data simulated from the linear model, using the same model. (That is, they were simulated from fit, and then the same model was refit to them.) model_lineup(), by default, uses broom::augment() to obtain the data and residuals from each fit. So one of these residual plots shows the residuals of a linear model fit to nonlinear data, and the others show the residuals of a linear model fit to linear data.

Similarly, we can quickly obtain samples from the population sampling distribution, to explore the behavior of this misspecified model’s parameter estimates:

fit |>
  sampling_distribution(nonlin_sample, nsim = 5)
## # A tibble: 12 × 6
##    term        estimate std.error statistic       p.value .sample
##    <chr>          <dbl>     <dbl>     <dbl>         <dbl>   <dbl>
##  1 (Intercept)  13.8        1.35     10.2   0.00000000627       0
##  2 x             0.664      0.561     1.18  0.252               0
##  3 (Intercept)  14.1        1.38     10.2   0.00000000645       1
##  4 x             0.420      0.572     0.734 0.472               1
##  5 (Intercept)  14.0        1.31     10.8   0.00000000287       2
##  6 x             0.462      0.543     0.851 0.406               2
##  7 (Intercept)  14.0        1.33     10.6   0.00000000370       3
##  8 x             0.359      0.551     0.651 0.523               3
##  9 (Intercept)  14.1        1.36     10.4   0.00000000512       4
## 10 x             0.461      0.566     0.814 0.426               4
## 11 (Intercept)  14.4        1.29     11.1   0.00000000163       5
## 12 x            -0.0747     0.537    -0.139 0.891               5

Here sampling_distribution() defaults to using broom::tidy() to obtain the coefficients and standard errors for each fit. We could use this to assess bias, to compare the sampling distribution to standard errors and confidence intervals, or simply to visualize variation.

The premise of the regressinator is that this kind of simulation can be a valuable teaching tool when students are learning to interpret regression diagnostics and determine how different kinds of misspecification might affect model fits.

Check the Get Started guide (vignette("regressinator")) for more detail.

Inspirations

Visual inference – hiding a plot of real data among “null plots” – has been around for quite a while, and I certainly did not invent this idea myself. For example:

The idea of using visual inference to teach regression diagnostics is also not new:

The regressinator simply adds an easy-to-use framework to allow all kinds of teaching activities to be constructed quickly. Instructors can design example to display in lecture, or students with R experience can run interactive examples and explore different situations. Ideally, if a student asks “But what if [some problem with the model] happens?”, you should be able to reply with a quick simulation.

Compared to other packages

There have been several past efforts to support pedagogical simulation and lineup plots in R:

Unlike these packages, the regressinator provides a simple tool for specifying a population and sampling from it, rather than conducting bootstrapping or permutation on an observed dataset. This makes the regressinator suitable for, say, exploring the properties of regression estimates and diagnostics in known populations, but less suitable for simulation-based hypothesis testing.

Unlike infer, the regressinator does not wrap R statistical methods or provide its own inference functions. Users must use lm(), glm(), or whatever other methods they need for their modeling. This makes the regressinator less suitable for introductory courses where extra complexity should be hidden away from students, but more suitable for more advanced work: as students advance to more complex models provided by other packages, they can use those models in the regressinator, without any special support being required.

A useful counterpart to the regressinator might be rsample, a general framework for methods that resample from the observed data, such as bootstrapping. In the same way that the regressinator supports general-purpose simulation from the population without hard-coding specific use cases, rsample supports resampling and cross-validation in a general way that could be used for any kind of modeling, not just models built into the package.