BookmarkSubscribeRSS Feed
helloSAS
Obsidian | Level 7

HI, I have a table like below and want it to be transposed like the "WANT" table below. Please suggest. 

 

 

 

HAVE            
             
number RG LB PM AR VL JB
9001 x a b a x b
9002 x a b a x b
9003 x x x x y x
9004 y x x x a x
             
WANT            
             
number seq value        
9001 RG x        
9001 LB a        
9001 PM b        
9001 AR a        
9001 VL x        
9001 JB b        
9002 RG x        
9002 LB a        
9002 PM b        
9002 AR a        
9002 VL x        
9002 JB b        
9003 RG x        
9003 LB x        
9003 PM x        
9003 AR x        
9003 VL y        
9003 JB x        
9004 RG y        
9004 LB x        
9004 PM x        
9004 AR x        
9004 VL a        
9004 JB x        
1 REPLY 1
art297
Opal | Level 21

Proc transpose makes that an easy task. e.g.:

 

proc transpose data=have out=want (rename=(_name_=seq col1=value));
  var rg--jb;
  by number notsorted;
run;

HTH,

Art, CEO, AnalystFinder.com

 

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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