I have a set of county-level indicators that I am trying to robustly scale for comparability across regression models. I've tried many things but can't seem to find the code to do this.
Please explain what you mean by "robustly scale for comparability across regression models". Why would scaling even matter in Regression? If you have variables temperature and distance, it doesn't matter if temperature is Fahrenheit or Celsius; and it doesn't matter if distance is kilometers or 1/16 of an inch, you will get the same predicted values and the same goodness of fit either way.
For comparability across regression models, I need to robustly scale each variable by centering
at the median value among all counties and then standardized to the median of the absolute deviation of
all counties. I'm doing this so 1 standard deviation means the same for all variables. I can do this in R, but am trying to replicate in SAS. The code I'm using is
proc stdize data = dataset out = scalesample method=median;
var variable;
run;
Seems like you want to use PROC STDIZE with the option METHOD=MAD
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.