Hello,
Basically i have a dataset that i would like to transform so that my rows become columns.
here's the data:
group number | number of people in group
group1 | 450
group2 | 256
group3 | 214
and i would like this:
group1 | group2 | group3
450 | 256 | 214
data have; input groupnumber $ numberingroup; datalines; group1 450 group2 256 group3 214 ; proc transpose data=have out=want(drop=_:); id groupnumber; var numberingroup; 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!
Register now
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.
Browse our catalog!