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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1081 views
  • 1 like
  • 2 in conversation