PROC SQL;
UPDATE ReAdm.CHI2
SET ADMISSION 'NOREADMIT' = 0.5 WHERE 'NOREADMIT' = 0;
END;
RUN;
I am trying to take the admission column that has noreadmit in it then the count is 0 and update it to 0.5.
This does not work either:
SET (ADMISSION)='NOREADMIT')COUNT = 0.5 WHERE COUNT = 0));
How about...
SET count = .5
where ADMISSION = 'NOREADMIT' and COUNT = 0;
quit;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest 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.
Browse our catalog!