Hello,
I have a data the has three columns like this:
col1 col2 col3
1 2 F
2 10 P
3 8 P
4 5 F
5 10 P
:
Is there a way to convert the third column to 1 and 0 in SAS. I mean like this
1 2 0
2 10 1
3 8 1
4 5 0
5 10 1
Thank you
View solution in original post
data want (drop=old); set have (rename=(col3=old)); col3=ifn(old="F",0,1); run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.