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 🙂
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.