BookmarkSubscribeRSS Feed
Lopes
Calcite | Level 5

Como transformar variables que estan en wide form a long form para poder trabajar en datos de panel

2 REPLIES 2
ChrisHemedinger
Community Manager

Hola Lopes,

I hope it's okay that my response is in English.

Try the Tasks->Data->Split Data task, or the Tasks->Data->Transpose Data task.

Chris

Check out SAS Innovate on-demand content! Watch the main stage sessions, keynotes, and over 20 technical breakout sessions!
AncaTilea
Pyrite | Level 9

Prueba de esto, por favor Smiley Happy

DATA wide;

  input id sex $ value1 value2 value3;

CARDS;

1 f 40 40 41

2 f 45 44 48

3 m 75 76 77

;

RUN;

DATA long1 ;

  SET wide ;

 

  value = value1 ;

  OUTPUT ;

  value = value2 ;

  OUTPUT ;

  value = value3 ;

  OUTPUT ;

  DROP value1--value3;

RUN;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 706 views
  • 0 likes
  • 3 in conversation