proc sql;
create table check1 as
select *,
case when new=1 then
case when aa=1 then 1 else 0 end as aa1,
case when aa=2 then 1 else 0 end as aa2,
case when aa=3 then 1 else 0 end as aa3
end
from id;
quit;
I wrote the code above, it looks not right.
The question is how I close the big loop for new=1?
thanks
Hi @wwwz Not quite suited for "nested" case when, rather it's far more convenient and precise to use AND operator like
case when new=1 and aa=1 then 1 else 0 end as aa1,
case when new=1 and aa=2 then 1 else 0 end as aa2,
case when new=1 and aa=3 then 1 else 0 end as aa3
Hi @wwwz Not quite suited for "nested" case when, rather it's far more convenient and precise to use AND operator like
case when new=1 and aa=1 then 1 else 0 end as aa1,
case when new=1 and aa=2 then 1 else 0 end as aa2,
case when new=1 and aa=3 then 1 else 0 end as aa3
@wwwz wrote:
proc sql;
create table check1 as
select *,case when new=1 then
case when aa=1 then 1 else 0 end as aa1,
case when aa=2 then 1 else 0 end as aa2,
case when aa=3 then 1 else 0 end as aa3end
from id;
quit;
I wrote the code above, it looks not right.
The question is how I close the big loop for new=1?
thanks
Might say this is more of a data step task:
data check1; set id; if new=1 then do; aa1 = (aa=1); aa2 = (aa=2); aa3 = (aa=3); end; run;
Especially if you have may more values to check. Consider if AA takes values of 1 to 25. That gets to be a lot of CASE coding.
But with an array in a data step:
data work.id;
input new aa;
datalines;
1 1
1 3
0 1
1 25
;
data work.check1;
set work.id;
array a(25) aa1-aa25;
if new= 1 then do i= 1 to dim(a);
a[i]= (aa=i);
end;
drop i;
run;
And ARRAYS do not work in SQL.
thanks
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.