BookmarkSubscribeRSS Feed
tjsoda
Calcite | Level 5

so that the frequency of zero is 10, and that of one is 20. thanks

1 REPLY 1
Jagadishkatam
Amethyst | Level 16

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;

    output;

    end;

run;

proc freq data=want;

    table number;

run;

Thanks,

Jag

Thanks,
Jag

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 1223 views
  • 0 likes
  • 2 in conversation