so that the frequency of zero is 10, and that of one is 20. thanks
hi,
please check the below code;
data want(drop=i);
do i=1 to 10;
number=0;
output;
end;
do i=1 to 20;
number=1;
run;
proc freq data=want;
table number;
Thanks,
Jag
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest 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.