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 Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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