Robust Multivariate Linear Models"

knitr::opts_chunk$set(
  message = FALSE,
  warning = FALSE,
  fig.height=5,
  fig.width=5,
  fig.align = "center",
  # results='hide',
  # fig.keep='none',
  fig.path='fig/robust-',
  echo=TRUE,
  collapse = TRUE,
  comment = "#>"
)
options(digits = 4)
set.seed(1071)
options(width=80, continue="  ")

Abstract

This vignette describes the theory behind, and demonstrates the use of, the robmlm() function from the heplots package, which provides robust estimation for multivariate linear models (MLMs) using iteratively reweighted least squares (IRLS).

It illustrates the central ideas behind robust estimation for MLMs, how the IRLS algorithm works, and presents examples of plots that help understand how robust models can contribute to data analysis. It uses two examples, one for a MANOVA design and another for a multivariate multiple regression to show features of robust methods and the graphical methods of this package that help to understand them.

Load packages

I use the following packages here:

library(heplots)
library(candisc)
library(ggplot2)
library(dplyr)
library(mvinfluence)

Introduction

Multivariate linear models (MLMs) extend the familiar univariate linear regression framework to situations where multiple response variables are modeled simultaneously as linear functions of a common set of predictor variables. While classical multivariate least squares estimation provides optimal results under ideal conditions (multivariate normality and absence of outliers), real-world data often violate these assumptions. The presence of outliers, heavy-tailed distributions, or other departures from normality can severely compromise the reliability of classical estimators, leading to biased parameter estimates and inflated error rates in hypothesis testing.

The need for robust estimation in multivariate regression has been recognized since the early development of robust statistical methods [@Tukey1960;@Huber1964]. Outliers in multivariate data can be particularly problematic because they may not be readily apparent when examining univariate marginal distributions, yet can exert substantial leverage on the fitted model. Furthermore, the curse of dimensionality means that as the number of response variables increases, the probability of encountering at least one outlying observation grows rapidly.

Robust multivariate regression methods aim to provide reliable parameter estimates and inference procedures that remain stable in the presence of outlying observations. As noted by @Rousseeuw2004,

"The main advantage of robust regression is that it provides reliable results even when some of the assumptions of classical regression are violated."

Several approaches have been developed for robust multivariate regression, including M-estimators, S-estimators [@Rousseeuw1984], and MM-estimators [@Yohai1987]. Each approach offers different trade-offs between robustness properties, computational efficiency, and statistical efficiency under ideal conditions. See the CRAN Task View: Robust Statistical Methods for an extensive list of robust methods in R. The vignette for the rrcov package, obtained by vignette(package = "rrcov"), contains a general overview of multivariate robust methods.

The method implemented in the robmlm() function belongs to the class of M-estimators, which generalize maximum likelihood estimation by replacing the likelihood function with a more robust objective function.

The key idea is to relax the least squares criterion of minimizing $Q(\mathbf{e}) = \Sigma e_i^2 = \Sigma (y_i - \hat{y}_i)^2$ by considering more general functions $Q(\mathbf{e}, \rho)$, where the function $\rho (e_i)$ can be chosen to reduce the impact of large outliers. In these terms,

[ \rho(e_i) = \begin{cases} \left[ 1 - \left( \frac{e_i}{c} \right)^2 \right]^2 & |e_i| \leq c, \ 1 & |e_i| > c. \end{cases} ]

These functions look like this in a graph. The biweight function has a property like Windsorizing--- the squared error remains constant for residuals $e_i > c$, with $c = 4.685$ for MASS::psi.bisquare().

#| label: fig-weight-fns
#| fig-align: "center"
#| fig-cap: "Diagram ploting the function $\\rho(e_i)$ of the contributions of the residuals $e_i$ to what is minimized in various fitting methods."
knitr::include_graphics(here::here("man", "figures", "weight-functions.jpg"))

Methodology: Iteratively Reweighted Least Squares (IRLS)

The robmlm() function implements robust multivariate linear model fitting using Iteratively Reweighted Least Squares (IRLS), a flexible and computationally efficient approach that belongs to the family of M-estimators. The core idea behind IRLS is to iteratively downweight observations that appear to be outliers based on their residual distances from the fitted model.

The IRLS Algorithm

The IRLS algorithm for robust multivariate regression is shown in the figure below.

knitr::include_graphics(here::here("man", "figures", "IRWLS-flowchart.jpg"))

The method proceeds as follows:

  1. Initialization: Begin with an initial estimate of the regression coefficients, typically obtained from ordinary least squares (OLS).

  2. Residual calculation: Compute the multivariate residuals for each observation: $$\mathbf{r}_i = \mathbf{y}_i - \mathbf{X}_i\hat{\boldsymbol{\beta}}$$ where $\mathbf{y}_i$ is the $p \times 1$ response vector for observation $i$, $\mathbf{X}_i$ is the corresponding row of the design matrix, and $\hat{\boldsymbol{\beta}}$ is the current estimate of the coefficient matrix.

  3. Distance computation: Calculate the squared Mahalanobis distance of each residual vector from the origin: $$d_i^2 = \mathbf{r}_i^T \mathbf{S}^{-1} \mathbf{r}_i$$ where $\mathbf{S}$ is a robust estimate of the residual covariance matrix, computed using MASS::cov.trob().

  4. Weight assignment: Assign weights to each observation based on their residual distances. Observations with larger distances receive smaller weights, effectively downweighting potential outliers: $$w_i = \rho(d_i^2)$$ where $\rho(\cdot)$ is a weight function that decreases as the distance increases.

  5. Weighted Least Squares: Update the coefficient estimates using weighted least squares: $$\hat{\boldsymbol{\beta}}^{(new)} = (\mathbf{X}^T\mathbf{W}\mathbf{X})^{-1}\mathbf{X}^T\mathbf{W}\mathbf{Y}$$ where $\mathbf{W}$ is a diagonal matrix of weights.

  6. Convergence check: Repeat steps 2-5 until convergence, typically assessed by monitoring changes in the coefficient estimates or weights between iterations.

Features of the Implementation

The robmlm() implementation incorporates several important features:

Theoretical Properties

The IRLS approach offers several desirable theoretical properties:

Example: Pottery Data

We begin with a simple but illustrative example using the pottery composition data from the carData package. This dataset contains measurements of five chemical elements (Al, Fe, Mg, Ca, Na) in pottery samples from four different archaeological sites. The goal is to determine whether the chemical composition differs significantly across sites, a classic one-way MANOVA problem. Alternatively, it can be framed as a problem in discriminant analysis, asking whether these chemical elements can be used to distinguish among the sites.

library(heplots)
library(carData)
library(car)

# Load the pottery data
data(Pottery, package = "carData")
head(Pottery)

The pottery dataset contains r nrow(Pottery) observations with measurements of five response variables representing chemical concentrations. Let's examine the basic structure:

str(Pottery)

The pottery samples are not evenly distributed across the sites. The most come from Llanedryn; there are only two from Caldicot.

table(Pottery$Site)

Classical MANOVA

We begin with the standard MANOVA model, and then examine some diagnostic plots.

# Classical MANOVA model
pottery.mlm <- lm(cbind(Al, Fe, Mg, Ca, Na) ~ Site, data = Pottery)
Anova(pottery.mlm)

Chisquare QQ plot: As an initial check, a cqplot() of the model gives a $\chi^2$ QQ plot of the residuals from the model, which would identify badly fit observations. None seem particularly large here.

cqplot(pottery.mlm, id.n = 5)

Influence plot: An influence plot for this model, done using mvinfluence::influencePlot() plots the leverage multivariate hat-values for the predictors (site) against squared multivariate studentized residuals, using the size of the point symbol proportional to a multivariate generalization of Cook's D statistic.

res <- influencePlot(pottery.mlm, id.n = 2)
res |>
  arrange(desc(CookD))

Because site is a factor, the hat-values are inversely proportional to the sample size. Points for Llanedryn ($n=14$) are in the left-most column, followed by AshleyRails and IsleThorns (each with $n=5$) and then Caldicot ($n=14$).

Here, case 25 stands out with the largest value of Cook's D, followed by 18 and 11.

Robust MANOVA

Now, fit the robust model using robmlm(). Because this uses an iterative IRLS method, points that might not seem unusual in the initial model can become more noteworthy when the extreme observations are down-weighted in a subsequent iteration.

# Robust MANOVA model
pottery.rlm <- robmlm(cbind(Al, Fe, Mg, Ca, Na) ~ Site, data = Pottery)
Anova(pottery.rlm)

Let's compare the results. From the results of Anova() above, you can see that the $F$ statistic for the robust model is greater than that for OLS, which suggests that possible outliers may have reduced the strength of evidence for differences among the sites.

It is useful to compare the coefficients of the two models, and for this, their relative difference is a useful metric. The simple function reldiff() expresses these as the signed percent of difference between the classical and robust estimates.

b.mlm <- coef(pottery.mlm)
b.rlm <- coef(pottery.rlm)

reldiff <- function(x, y, pct=TRUE) {
  res <- abs(x - y) / x
  if (pct) res <- 100 * res
  res
}

reldiff(b.mlm, b.rlm)

Among these, the coefficients for IsleThorns are quite different for most of the variables.

Examining the Robust Weights

The robust fitting procedure assigns weights to each observation based on their deviation from the fitted model. Observations that appear to be outliers receive lower weights. The plot() method for a "roblm" object gives an index plot of the weight values.

# Plot the weights from robust fitting
plot(pottery.rlm, col=Pottery$Site, segments=TRUE)
xloc <- c(7.5, 15.5, 19.5, 24)
text(xloc, rep(c(1.0, 1.05), length=5), 
     levels(Pottery$Site), pos =3, xpd = TRUE)

The weight plot reveals which observations were considered potentially problematic during the robust fitting process. Observations with weights substantially below 1.0 were down-weighted, indicating they may be outliers in the multivariate space defined by the five chemical measurements.

Distance Plot

distancePlot() gives a complementary view of the same idea. It plots the Mahalanobis distances of the Site predictors (the model matrix X) against the distances of the residuals from the robust fit, labeling cases beyond the cutoff lines (dashed, level = 0.975 by default). This plot method, due to Rousseeuw & van Zomeren [-@Rousseeuw1990; -@Rousseeuw1991] and Rousseeuw et al. [-@Rousseeuw2004], helps you see WHY observations are downweighted, by combining information on regression outliers (unusual in the Y responses) and leverage points (unusual in the Xs).

distancePlot(pottery.rlm)

Case 25 -- already flagged with the largest Cook's D in the classical influence plot above -- again stands out, here with an unusually large residual distance. Cases 15 and 16 stand out instead on the predictor (Site) side, reflecting their group's small sample size rather than an unusual response pattern.

Hypothesis-Error (HE) plots

HE plots provide a visual representation of the multivariate hypothesis test by showing the relationship between hypothesis and error variation in a reduced dimensional space. We'll create HE plots for the first two variables (Al and Fe) and compare the classical and robust fits.

# Classical HE plot for Al and Fe
heplot(pottery.mlm, variables = c("Al", "Fe"), 
       main = "Classical vs Robust MANOVA: Al vs Fe",
       col = c("blue", "blue"), fill = TRUE, fill.alpha = 0.2)

# Overlay robust HE plot
heplot(pottery.rlm, variables = c("Al", "Fe"), 
       add = TRUE, error.ellipse = TRUE,
       col = c("red", "red"), 
       fill = TRUE, fill.alpha = 0.2, lty = 2)

# Add legend
legend("topright", 
       legend = c("Classical", "Robust"), 
       col = c("blue", "red"), 
       lty = c(1, 2), 
       fill = c("blue", "red")
       )

The H and E ellipses have approximately the same shape and orientation for the classical and robust models, indicating that the pattern of differences among the group means is quite similar for both models. However, the E ellipse for the robust model is noticeably smaller. This goes into the greater $F$ statistic for the robust model.

For a more complete interpretation of robust model, a scatterplot matrix of HE plots is shown below, using the pairs() method for a MLM.

pairs(pottery.rlm, 
      fill=TRUE, fill.alpha = 0.1)

Interpretation and Discussion

Several important insights emerge from this analysis of the Pottery data

The robust approach demonstrates its value by providing a more stable analysis that is less susceptible to the influence of outlying observations, while still maintaining high efficiency when the data conform to standard assumptions.

Example: Pulp Fiber Data

Our second example is more compact, and illustrates robmlm() in a multivariate multiple regression rather than a MANOVA design. The pulpfiber data [in the robustbase package, @Rousseeuw2004; data from the unpublished thesis of Lee, 1992] give four pulp-fiber properties (X1-X4: fiber length, long fiber fraction, fine fiber fraction, zero-span tensile) measured on 62 samples, along with four properties of the paper produced from them (Y1-Y4: breaking length, elastic modulus, failure stress, burst strength). The goal is to predict the paper properties from the fiber properties.

data(pulpfiber, package = "robustbase")
str(pulpfiber)

Classical and Robust Fits

To get started, fit the classical OLS multivariate regression and the robust version and run car::Anova() on each

pulp.mod <- lm(cbind(Y1, Y2, Y3, Y4) ~ X1 + X2 + X3 + X4, data = pulpfiber)
pulp.rlm <- robmlm(cbind(Y1, Y2, Y3, Y4) ~ X1 + X2 + X3 + X4, data = pulpfiber)

Anova(pulp.mod)
Anova(pulp.rlm)

The contrast here is more dramatic than for Pottery:

Robust Weights

plot(pulp.rlm, segments = TRUE)

Four cases -- 51, 52, 56 and 61 -- are driven to (essentially) zero weight; two more (22, 44) are markedly reduced (0.43 and 0.69); every other sample retains weight above 0.7. The weight plot alone doesn't say why these six are atypical; for that we turn to the distance plot.

Distance Plot

A distancePlot() involves two independent choices: which residuals define the Y (vertical) axis -- from pulp.mod (OLS) or pulp.rlm (robust) -- and which covariance estimator computes the distances themselves, via method. In this example, only the second choice matters much: with the default method = "classical", the flagged cases are identical whether the residuals come from pulp.mod or pulp.rlm -- the same eight cases (46, 51, 52, 56, 57, 58, 60, 61) either way. The main difference is seen in the covariance estimate, not the fit.

The reason is a masking effect: classical covariance for the X1-X4 fiber measurements is computed from all 62 samples, including the very outliers it is meant to help detect, so it is itself distorted by them and understates how unusual those samples really are. Rousseeuw et al. [-@Rousseeuw2004] address exactly this for the pulp fiber data by using the MCD covariance estimator instead, which is resistant to the outliers it's estimating around. The panels below compare the two, both using the robust-fit residuals from pulp.rlm:

op <- par(mfrow = c(1, 2))
distancePlot(pulp.rlm, method = "classical", main = "Classical distances")
distancePlot(pulp.rlm, method = "mcd", main = "MCD distances")
par(op)

Under classical covariance (left), cases 60 and 62 -- which turn out to have the two largest predictor distances of any sample once MCD is used -- don't stand out at all: their unusual fiber measurements are masked by a covariance matrix that treats them as ordinary. Under MCD (right), the picture sharpens considerably, flagging 21 cases rather than 8. Most of these retain weight above 0.8 in pulp.rlm -- unusual in X, but well fit by the model -- so we focus on the few that also matter for the robust fit:

Interpretation and Discussion

References



Try the heplots package in your browser

Any scripts or data that you put into this service are public.

heplots documentation built on Aug. 23, 2026, 5:07 p.m.