BookmarkSubscribeRSS Feed
rykwong
Quartz | Level 8

Dear SAS communities

I have a excel dataset that contains a 50 binary variables (e.g. history of diabetes: 1/0 etc), a variable "center" which contains the name of one of 10 hospitals

 

I just want to create a summary stats excel table where each of the 50 binary variables is listed as a line like this

variable                 N.       Nmiss.            frequent "0"      percentage "0"    frequent "0"      percentage "0"  

hx_diabetes.                                               xx.                       xx%.                    yy.                       yy%.      

hx_stroke                                                    xx.                       xx%.                    yy.                       yy%.      

 

then sort by "center" to output the same table restricting to each of the "center"

 

if you have a code that I can borrow, I would be grateful.  Thanks 

3 REPLIES 3
Reeza
Super User

Your last variables are duplicated so not sure what you're looking for there. Otherwise this can be standard output from PROC MEANS. 

PROC MEANS can do the N, NMISS. Frequency of a 1/0 variable is the SUM and Percentage is the Mean.

Note that you'll get a value for the Overall as well  as each facility with this code.

 

proc means data=have out=want stackods n nmiss sum mean;
class hospital;
var hx_: ; *use all hx variables;
ods output summary=MySummary;
run;
rykwong
Quartz | Level 8

thanks Reeza for your prompt response

 

this solves my problem, thanks again

 

rykwong
Quartz | Level 8

thanks Reeza for your prompt response

 

this solves my problem, thanks again

 

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

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