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
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.
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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.