5.18 Box-Cox outcome transformation

Continuous variables that are highly skewed are common in public health. For example, any variable that is derived as the sum of multiple indicators will have all non-negative values and this often leads to a skewed distribution. For example, in Rogers et al. (2021), researchers log-transformed the skewed outcome variable frailty index (FI), derived as the sum of 34 indicators across a number of health domains, prior to fitting linear regression studying the association between childhood socioeconomic status and frailty. Due to the presence of zero values, they used the transformation \(\log(FI + 0.01)\). Other examples of skewed variables include population size, income, and costs. For example, in Sakai-Bizmark et al. (2021), researchers log-transformed cost of hospitalization in a linear regression investigating the association between homelessness and health outcomes in youth.

The previous sections included recommendations for handling assumption violations using variable transformations. The natural logarithm, square root, and inverse transformations are special cases of the more general Box-Cox family of transformations (Box and Cox 1964). Note that, as presented here, the method only applies to transformation of the outcome, not predictors. Also, the method assumes that the outcome values are all positive. If there are a few zero or negative values, a modification of the Box-Cox that allows non-positive values (Box-Cox with negatives, BCN) can be used (Hawkins and Weisberg 2017). If there are zero values, but no negative values, as mentioned previously an option is to add a small number before carrying out the transformation, although if there are a large number of zero values then it is possible no Box-Cox transformation will sufficiently normalize the residuals or stabilize the variance of the residuals.

Consider the family of transformations of a positive outcome \(Y\) defined by \(Y^{\lambda}\). The square root transformation corresponds to \(\lambda = 0.5\) and the inverse transformation to \(\lambda\) = -1. By convention, \(\lambda = 0\) corresponds to the natural log transformation, not to \(Y^0\) which would be a constant value of 1. When \(\lambda < 0\), \(Y^{\lambda}\) reverses the ordering of the outcome values, so to preserve the original ordering, we will multiply by -1. We will use MASS::boxcox() (Ripley 2023; Venables and Ripley 2002) to find the value of \(\lambda\) that optimally transforms the outcome \(Y\) for a linear regression model.

In summary,

  • if \(\lambda\) is close to 1, then no transformation is needed; otherwise,
  • if \(\lambda\) is close to 0, replace \(Y\) with \(\ln{(Y)}\); otherwise,
  • if \(\lambda > 0\), replace \(Y\) with \(Y^{\lambda}\); otherwise,
  • if \(\lambda < 0\), replace \(Y\) with \(-Y^{\lambda}\).

What is “close” to 1 or 0 is arbitrary. All else being equal, a model with no outcome transformation is most desirable as the results are easier to explain and all predictions are on the original scale. So unless \(\lambda\) is far enough from 1 to make a meaningful difference in the validity of the assumptions (e.g., constant variance is strongly violated), you might as well stick with no outcome transformation. Similarly, when a transformation is needed but \(\lambda\) is not far enough from 0 to make a meaningful difference, then use a log-transformation since it is commonly used and therefore understandable to a broader audience.

Example 5.1 (continued): In Sections 5.16 and 5.17 we found the following assumption violations:

  • Possible non-linearity in waist circumference, and
  • Non-constant variance of the residuals – the variance was larger for observations with larger fitted values.

Additionally, the residuals were not normally distributed, although this by itself is not an issue due to the large sample size.

The Box-Cox method searches over a range of possible transformations and finds the optimal one. MASS::boxcox() produces a plot of the profile log-likelihood values (the definition of this term is beyond the scope of this text) as a function of \(\lambda\) (Figure 5.39).

LAMBDA <- MASS::boxcox(fit.ex5.1)
Box-Cox transformation: log-likelihood vs. lambda plot

Figure 5.39: Box-Cox transformation: log-likelihood vs. lambda plot

The plot should have an upside-down U shape and the optimal \(\lambda\) value is the one at which the log-likelihood is maximized. The object you assign the output to (below, LAMBDA) will contain elements \(x\) and \(y\) corresponding to the points being plotted to create the figure. These can be used to extract the optimal \(\lambda\) value using which().

LAMBDA$x[which(LAMBDA$y == max(LAMBDA$y))]
## [1] -1.515

The optimal value for this example is -1.515, which we can round to -1.5. Thus, our Box-Cox transformation is \(-Y^{-1.5}\). Interestingly, the optimal transformation turned out to be not that different from the inverse transformation (\(-Y^{-1}\)) that we earlier found in the small sample size version of this example to work better than a log or square root transformation.

Create the transformed version of the outcome and refit the model.

nhanesf.complete <- nhanesf.complete %>% 
  mutate(LBDGLUSI_trans = -1*LBDGLUSI^(-1.5))

fit.ex5.1.trans <- lm(LBDGLUSI_trans ~ BMXWAIST + smoker +
    RIDAGEYR + RIAGENDR +  race_eth + income,
    data = nhanesf.complete)

NOTE: If the Box-Cox plot does not look like an upside down U, with a clear maximum, then increase the range over which to search \(\lambda\). For example, the code below tells the function to search over the range from -3 to 3. By changing the range, this also has the effect of changing the resolution in the grid of possible values for \(\lambda\), but this difference will typically not matter, especially if you round to the nearest 0.1 afterwards. To increase the resolution of the grid, decrease the range and/or increase the length of the lambda argument in MASS::boxcox().

LAMBDA <- MASS::boxcox(fit.ex5.1, lambda = seq(-3, 3, length=100))
LAMBDA$x[which(LAMBDA$y == max(LAMBDA$y))]

After using the Box-Cox outcome transformation, re-check the regression assumptions.

Re-check normality

The normality assumption remains violated but, again, this is not an issued since the sample size is so large (Figure 5.40).

Recheck normality after Box-Cox transformation

Figure 5.40: Recheck normality after Box-Cox transformation

Re-check linearity

Before the outcome transformation, we resolved non-linearity using a quadratic transformation of waist circumference. However, after the Box-Cox outcome transformation, there is no non-linearity so no need for the quadratic transformation. It is generally safe to ignore minor non-linearities in areas of the plot with few points, such as on the far left of the CR plot for waist circumference (Figure 5.41).

Recheck linearity after Box-Cox transformation

Figure 5.41: Recheck linearity after Box-Cox transformation

This illustrates that there may be multiple ways to resolve an assumption violation, and which you pick is more of an art than a science. In general, go with the solution that is simplest and easiest to explain. In this example, the outcome transformation is simpler than the quadratic predictor transformation in the sense that inference about the predictor’s relationship to the outcome involves just one regression coefficient instead of the two you would have with a quadratic transformation. On the other hand, the outcome transformation is more complicated in the sense that it leads to predictions that are not on the original outcome scale.

Re-check constant variance

The variance still seems to increase with the fitted values, but not as much as before we used the Box-Cox transformation. Additionally, there are a few points with large negative residuals (Figure 5.42). We will examine these outliers in Section 5.20.

Recheck constant variance after Box-Cox transformation

Figure 5.42: Recheck constant variance after Box-Cox transformation

References

Box, G. E. P., and D. R. Cox. 1964. “An Analysis of Transformations.” Journal of the Royal Statistical Society. Series B (Methodological) 26 (2): 211–52. https://www.jstor.org/stable/2984418.
Hawkins, D. M., and S. Weisberg. 2017. “Combining the Box-Cox Power and Generalised Log Transformations to Accommodate Nonpositive Responses in Linear and Mixed-Effects Linear Models.” South African Statistical Journal 51 (2): 317–28. https://doi.org/10.10520/EJC-bd05f9440.
Ripley, Brian. 2023. MASS: Support Functions and Datasets for Venables and Ripley’s MASS. http://www.stats.ox.ac.uk/pub/MASS4/.
Rogers, Nina T, Joanna M Blodgett, Samuel D Searle, Rachel Cooper, Daniel H J Davis, and Snehal M Pinto Pereira. 2021. “Early-Life Socioeconomic Position and the Accumulation of Health-Related Deficits by Midlife in the 1958 British Birth Cohort Study.” American Journal of Epidemiology 190 (8): 1550–60. https://doi.org/10.1093/aje/kwab038.
Sakai-Bizmark, Rie, Hiraku Kumamaru, Dennys Estevez, Emily H Marr, Edith Haghnazarian, Lauren E M Bedel, Laurie A Mena, and Mark S Kaplan. 2021. “Health-Care Utilization Due to Suicide Attempts Among Homeless Youth in New York State.” American Journal of Epidemiology 190 (8): 1582–91. https://doi.org/10.1093/aje/kwab037.
Venables, W.N., and B.D. Ripley. 2002. Modern Applied Statistics with s. 4th ed. New York: Springer.