BookmarkSubscribeRSS Feed
polpel
Fluorite | Level 6

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

1 REPLY 1
PeterClemmensen
Tourmaline | Level 20
data have;
input groupnumber $ numberingroup;
datalines;
group1 450
group2 256
group3 214
;

proc transpose data=have out=want(drop=_:);
    id groupnumber;
    var numberingroup;
run;
How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 633 views
  • 0 likes
  • 2 in conversation