BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Jason2020
Obsidian | Level 7

Hi,

 

I have several  data sets that look like:

Obs v1 v2 v3

1 2 3 3

2 5 3 2

3 1 0 3

etc

;

 

And would like to move the columns to rows:

 

Obs v

1 2

2 5

3 1

1 3

2 3

3 0

1 3

2 2

3 3

etc

;

 

Is there a simple way to do this in data step (instead of using transpose or other procedures)?

 

Thanks for assistance with this.

 

Jason

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
Yes there is, see this tutorial/write up on going from wide to long with a data step. Basically use the OUTPUT statement.
https://stats.idre.ucla.edu/sas/modules/reshaping-data-wide-to-long-using-a-data-step/

View solution in original post

12 REPLIES 12
PGStats
Opal | Level 21

Why not use the best tool  for the job, i.e. proc transpose?

 

In a data step, put V1-V3 in an array and output each value in a do LOOP.

PG
novinosrin
Tourmaline | Level 20
data have;
input Obs v1 v2 v3;
cards;
1 2 3 3
2 5 3 2
3 1 0 3
;


;
run;
proc transpose data=have out=_h;
by _all_;
var v:;
run;
proc sort data=_h out=want(keep=col1);
by _name_;
run;
Jason2020
Obsidian | Level 7

I know that I could use transpose. However, because the data set has other variables that I want be copied (not transposed) to the vertical output set I thought using the data step is less complicated.

novinosrin
Tourmaline | Level 20

ok PG's suggested, loop and array should suffice

Reeza
Super User
Yes there is, see this tutorial/write up on going from wide to long with a data step. Basically use the OUTPUT statement.
https://stats.idre.ucla.edu/sas/modules/reshaping-data-wide-to-long-using-a-data-step/
Astounding
PROC Star

If you are really interested in changing just 3 variables, here's a very simple way:

 

data want;

set have;

v=v1;

output;

v=v2; 

output;

v=v3;

output;

drop v1 v2 v3;

run;

 

If you actually have more than 3 variables, putting them into an array (as was suggested) is an excellent idea.

Jason2020
Obsidian | Level 7

Thanks to all. All your replies were very useful. I appreciate it.

 

Jason

Ksharp
Super User

Did I missed something ?

 

 

data have;
input Obs v1 v2 v3;
cards;
1 2 3 3
2 5 3 2
3 1 0 3
;

data want;
 set have(keep=obs v1 rename=(v1=v))
 have(keep=obs v2 rename=(v2=v))
 have(keep=obs v3 rename=(v3=v));
run;
Astounding
PROC Star

Just a small point.  In reality, the KEEP list is longer.  You would either need to spell out a longer list, or switch to:

 

set have (drop=v2 v3 rename=(v1=v))

have (drop=v1 v3 rename=(v2=v))

have (drop=v1 v2 rename=(v3=v));

 

Ksharp
Super User

Astounding,

You mean you save more code than me ?

Astounding
PROC Star

Sort of.  Buried in one of the messages is that OBS represents many variables, not just a single variable.  The message didn't say how many, but if there were 30 variables that needed to be carried to the output, they all would need to appear in the KEEP list.

Ksharp
Super User

OK. I know you .

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 12 replies
  • 2312 views
  • 2 likes
  • 6 in conversation