Como transformar variables que estan en wide form a long form para poder trabajar en datos de panel
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
Prueba de esto, por favor
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 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.