BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.

Hello,

 

I have a question about quintiles please. I divided a score into quintiles. In SAS how can I get the exact cut offs of each quintile and then how can I calculate the median value of each quintile please?

 

I would appreciate any help!

Thank you 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

@anonymous_user wrote:

 

I have a question about quintiles please. I divided a score into quintiles. In SAS how can I get the exact cut offs of each quintile and then how can I calculate the median value of each quintile please?

Since the median of a quintile is itself a percentile, you want the 10, 20, 30, 40 ... percentiles. So you really want 

 

proc means data=new min p10 p20 p30 p40 p50 p60 p70 p80 p90 max;
--
Paige Miller

View solution in original post

5 REPLIES 5

Would this be acceptable?

 

proc means data=new min p20 p40 p60 p80 max median ;

class quintiles;

var Score ;

run;

PaigeMiller
Diamond | Level 26

@anonymous_user wrote:

 

I have a question about quintiles please. I divided a score into quintiles. In SAS how can I get the exact cut offs of each quintile and then how can I calculate the median value of each quintile please?

Since the median of a quintile is itself a percentile, you want the 10, 20, 30, 40 ... percentiles. So you really want 

 

proc means data=new min p10 p20 p30 p40 p50 p60 p70 p80 p90 max;
--
Paige Miller

Thank you ver much!

Ksharp
Super User
Use PROC RANK to get quantitle.
proc rank data=have out=temp;
var variable;
ranks group;
run;

Use PROC SQL to get min max or cut off value and median.
proc sql;
select group,min(variable) as min,max(variable) as max,median(variable) as median
from temp
group by group;
quit;

Thank you very much!

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 5 replies
  • 2753 views
  • 2 likes
  • 3 in conversation