How can I calculate more granular percentiles? Thanks!
proc univariate data=dsn; var amount; output pctlpre=P_ pctlpts= 41 to 42 by 0.1; run;
where the example is shown
output pctlpre=P_ pctlpts=50,95 to 100 by 2.5;
You need to tell SAS where to put the output
output out=myPercentiles pctlpre=P_ pctlpts= 41 to 42 by 0.1;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.