I am trying to find the best transformation for a set of non-normally distributed continuous variables. I see that I can use PROC PRINQUAL w/ the TRANSFORM statement and select various options (e.g. Log, Exp), but is there a function or proc that will help me select the best one?
STATA has a function - ladder - that will transform variables in a multitude of ways and then present a chi-square statistic to help determine which transformation is the "best", based on the lowest chi-square statistic.
Does SAS have anything like this?
Thanks!
You may want to look at PROC TRANSREG, and specifically at the Box-Cox transformation material there.
Steve Denham
You may want to look at PROC TRANSREG, and specifically at the Box-Cox transformation material there.
Steve Denham
@SteveDenham The Box-Cox transformation in PROC TRANSREG contains a model statement w/ what looks like a dependent (Y) and indepedent (i.e. X) variable.
proc transreg data=x test; model BoxCox(y) = identity(x); run;
Pardon my ignorance, but why is the indepedent variable requried if I am just looking for a transformation of the dependent variable?
My model has a categorical indepedent variable (ANOVA) and PROC TRANSREG seems to require a continuous variable for the model statement.
Thanks!
See the doc for Box-Cox transformations in PROC TRANSREG.
Of course, now that a couple of us have recommended something, I can ask the important question: Why? Why do you want to transform through an "optimal transformation"? I would consider the process that generated the values to be of far greater importance in determining the distribution than a best fit. Suppose you do find an optimal transformation, but consideration of the process suggests an alternative. Which approach would likely have greater inferential utility?
In the end, if you just want the transformed data to look Gaussian, recall that there is not an assumption about the data being normally distributed in linear models (regression, ANOVA, etc.). It is all about the normality of the residuals, which is different cat altogether. And there are powerful techniques available that may not require pre-transformation of the data, if the normality of residuals assumption is not met.
Steve Denham
@SteveDenham Thanks for the though provoking quesiton, the reminder, and the useful explanation!
I'm getting an error message that there are invalid values when using the Box-Cox transformation in PROC TRANSREG. There are no missing values, no zero values and no negative values in the dataset. Any ideas?
<ERROR: 31 invalid values were encountered while attempting to transform variable var1;>
Thanks!
Depends on the transformation, but probably you are encountering nonpositive values for a transformation that requires positive values. For example, the log() transformation requires positive values. The square-root transformation requires nonnegative values. The inverse transformation (1/x) requires non-zero values, and so forth.
It looks like you have ruled out most everything, so I would start to suspect character strings where numbers are expected, especially if you imported excel data.
Steve Denham
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.