hello all-
suppose i have a dataset A with one variable x:
data A (keep=x);
do i=1 to 3 by 1;
do x=1 to 2 by 1; output;
end;
end; run;
1
2
1
2
1
2
now i want to recode this data set where if x=1 then x='no'; else x='yes'. thus now A will look like
no
yes
no
yes
no
yes
any way to do this?
thanks
You have your proc format, use it with a put statement.
x1_temp=put(x1, xone.);
You have your proc format, use it with a put statement.
x1_temp=put(x1, xone.);
thanks again reeza 🙂
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.