Hi,
I want to tranpose a few numeric variables and I want the transposed variable to have formatted character values (instead of the default unformatted numeric value).
Any idea how to do this?
Thanks.
VD
To get SAS to convert numeric variables to character (with associated formats) the VAR list must include at least one character variable. It can be a dummy variable if you like.
var numericvar1 ... numericvarN DUMMYcharacterVar;
To get SAS to convert numeric variables to character (with associated formats) the VAR list must include at least one character variable. It can be a dummy variable if you like.
var numericvar1 ... numericvarN DUMMYcharacterVar;
Thanks data_null_!
The dummy variable helped.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.