BookmarkSubscribeRSS Feed
Hilde
Calcite | Level 5


Hey there!

What is the best / quickest way to calculate the 75th percentile in SAS from different variables in a very large data set?

Is there a way to only calculate the percentile and not the other statistics in Proc univariate?

Thanks 

2 REPLIES 2
AncaTilea
Pyrite | Level 9

How about this:

proc summary data = sashelp.class p75 print;

    var age;

run;

But I am not sure it is the quickest.

Smiley Happy

data_null__
Jade | Level 19

PROC STDIZE has a one-pass apprach that you may find useful. PCTLMTD=ONEPASS

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
  • 2 replies
  • 2037 views
  • 6 likes
  • 3 in conversation