origin file
group weight01 weight02 weight03
A 1 2 3
A 4 5 6
B 7 8 9
B 6 5 4
I woul like to
group weight
A 1
A 4
B 7
B 6
A 2
A 5
B 8
B 5
A 3
A 6
B 9
B 4
I think I find the answer.
it is folowing logic
proc sql;
create table allvars as
select var1 from dataset
union
select var2 from dataset
union
select var3 from dataset;
quit;
@miris wrote:
I think I find the answer.
it is folowing logic
proc sql; create table allvars as select var1 from dataset union select var2 from dataset union select var3 from dataset; quit;
Correct version (giving exactly the output you initially posted):
proc sql;
create table allvars as
select group, weight01 as weight from have
union all
select group, weight02 as weight from have
union all
select group, weight03 as weight from have;
quit;
Explicit method in a data step:
data want;
set have;
array weights {*} weight01-weight03;
do i = 1 to dim(weights);
weight = weights{i};
output;
end;
keep group weight;
run;
Or simply:
data want; set have (rename=(weight01=weight)) have (rename=(weight02=weight)) have (rename=(weight03=weight)); 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.