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

My data is as follows:

data test;
input facilities_name $ sex totalpatients;
datalines;
ABCD 1 1850
CDXF 0 1234
XYZ 1 34567
qwerty 1 123
ASDF 0 1345567
rtyu 0 45
;
run;

 

I have to populate following table:

 

Sex

Total no of male(1)

3

Total no of female(0)

3

Facility rank by Totalpatients

 

       Quartile 1 (25)(mean N = XXX)

(No of facilities)

       Quartile 2 (50)

 

       Quartile 3 (75)

 

       Quartile 4 (100)

 

 

All suggestions are welcomed! 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

1. Use PROC RANK with GROUPS=4 to get the quartile. 

2. Use that data set with PROC MEANS to get the N and Mean

 


@pmpradhan wrote:

My data is as follows:

data test;
input facilities_name $ sex totalpatients;
datalines;
ABCD 1 1850
CDXF 0 1234
XYZ 1 34567
qwerty 1 123
ASDF 0 1345567
rtyu 0 45
;
run;

 

I have to populate following table:

 

Sex

Total no of male(1)

3

Total no of female(0)

3

Facility rank by Totalpatients

 

       Quartile 1 (25)(mean N = XXX)

(No of facilities)

       Quartile 2 (50)

 

       Quartile 3 (75)

 

       Quartile 4 (100)

 

 

All suggestions are welcomed! 


 

View solution in original post

4 REPLIES 4
Reeza
Super User

1. Use PROC RANK with GROUPS=4 to get the quartile. 

2. Use that data set with PROC MEANS to get the N and Mean

 


@pmpradhan wrote:

My data is as follows:

data test;
input facilities_name $ sex totalpatients;
datalines;
ABCD 1 1850
CDXF 0 1234
XYZ 1 34567
qwerty 1 123
ASDF 0 1345567
rtyu 0 45
;
run;

 

I have to populate following table:

 

Sex

Total no of male(1)

3

Total no of female(0)

3

Facility rank by Totalpatients

 

       Quartile 1 (25)(mean N = XXX)

(No of facilities)

       Quartile 2 (50)

 

       Quartile 3 (75)

 

       Quartile 4 (100)

 

 

All suggestions are welcomed! 


 

pmpradhan
Quartz | Level 8

Can you please post code as well. Thank you!

PaigeMiller
Diamond | Level 26

I think you need to give it a try yourself, and if you can't get it to work, show us the code and log.

 

You can look up PROC RANK and PROC MEANS in the documentation, they are relatively simple by SAS standards.

--
Paige Miller

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 4 replies
  • 1591 views
  • 3 likes
  • 3 in conversation