base sas create derived veriable in lab data set increase >=20% and aval>uln how to create?
using base sas to create derived veriable critfn=1, in lab data set using condition ; if increase >=20% and aval>ULN how to create?
Would this not simply be a simple IF-THEN-ELSE statement?
if increase>=0.2 and aval>uln then critfn=1;
else critfn=0;
Where increase, aval, and uln are previously defined on the data set.
Steve Denham
thanking you sir.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.