@kristinsainani wrote:
A simple trick to change this variable to numeric is to add 0 to the variable (and name it something new):
data NEW;
set OLD;
rate2=age_adjusted_rate+0;
run;
This does work, but it's not recommended. It will generate a warning in the log about implicit conversion, so you're now used to seeing the messages in your log which makes it easier to miss other issues or to have them suppressed because you have too many notes/warnings.