I have this:
Id s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12
1 0 0 1 0 0 0 0 0 0 0 0 0
1 0 0 0 0 1 0 0 0 0 0 0 0
1 0 0 0 0 0 2 0 0 0 6 0 0
1 1 0 0 0 0 0 0 0 0 0 0 0
2 0 1 0 0 0 0 0 0 0 0 0 0
3 0 0 0 0 0 0 0 0 3 0 0 0
3 0 1 0 0 0 0 0 0 0 0 0 0
4 0 0 0 0 0 0 0 0 0 0 0 0
5 0 0 1 0 0 0 0 0 0 0 0 0
5 0 0 0 1 0 0 0 3 0 0 6 0
How do I get this (all observations sorted by id in one row)?
Id s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12
1 1 0 1 0 1 2 0 0 0 6 0 0
2 0 1 0 0 0 0 0 0 0 0 0 0
3 0 1 0 0 0 0 0 0 3 0 0 0
4 0 0 0 0 0 0 0 0 0 0 0 0
5 0 0 1 1 0 0 0 3 0 0 6 0
CODE NOT TEST.
proc summary data=have;
by id;
var s: ;
output out=want max=;
run;
CODE NOT TEST.
proc summary data=have;
by id;
var s: ;
output out=want max=;
run;
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 lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.