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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 466 views
  • 1 like
  • 2 in conversation