BookmarkSubscribeRSS Feed
Mgarret
Obsidian | Level 7

Hi all--

I have a proc transpose question. I would like to go from this:

YearOfficeSafey
Well-Being Admin Supportstaff trai

FY11

Office1

.90.67.78.99

To this:

          



YearFY11
OfficeOffice1
Safey0.9
Well-Being 0.67
Admin Support0.78
staff training0.99

I have been having a little trouble.

proc transpose data=have;

by

var

id

run;

Every combo I try  does not seem to work.

Any help is greatly appreciated.

Thanks

1 REPLY 1
shivas
Pyrite | Level 9

Hi, 

Try this...

data have;

input Year $ Office  $ Safey  WellBeing  AdminSupport stafftrai;

cards;

FY11 Office1 .90 .67 .78 .99

;

run;

proc transpose data=have out=want;

var year office Safey  WellBeing  AdminSupport stafftrai;

run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

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

Browse our catalog!

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