BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
BrahmanandaRao
Lapis Lazuli | Level 10
data dupcount;
set dup (keep= age);
by age;
if first.age then count=0;
count+1;
if last.age then output;
run;

proc freq;
tables age /nocum nocol norow nopercent  ;
run;

Here i am trying to get same output with proc freq as simple as datastep

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Use these options in the TABLES statement:

tables age / out=want (drop=percent) noprint;

No output is created, but a dataset with the same variables and content as in the data step.

View solution in original post

3 REPLIES 3

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
  • 3 replies
  • 633 views
  • 1 like
  • 2 in conversation