Hello:
I have a data set of professional claims data for patients. It is at the claims level data rather than the patient ID level. For example:
Cla
I want to make it at the Patient ID level instead.
Thank you for your help!
Please try,
proc sort data=have;
by patient_id;
run;
proc transpose data=have;
id claim_number;
var diagnosis1;
Thanks,
Jag
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!