BookmarkSubscribeRSS Feed
kullboys
Calcite | Level 5

Hello everyone

Is it possible to  calculate percent from total in proc means >?

Thanks.

2 REPLIES 2
cau83
Pyrite | Level 9

You would need to do it in a couple steps, eg:

proc means data=yourdata;
  by group;
  var your-var;
  output out=group sum=total;

proc means data=yourdata;
  by group subgroup;
  var your-var;
  output out=subgroup sum=subtotal;

data pct_of_total;
  merge group subgroup;
  by group;
  pct_of_total=subtotal/total;
run;
ballardw
Super User

@kullboys wrote:

Hello everyone

Is it possible to  calculate percent from total in proc means >?

Thanks.


Other than not very clearly explaining what "from total" might imply (I can think of several interpretations), not in proc means. The documentation is pretty clear about what statistics proc means will calculate and percentages are not included.

 

Proc means can create an output data set that likely has the sums and/or n's that you need but will take other steps.

 

Proc tabulate and report both will create percentages but of specific forms and without actual example data and the desired result I can't go any further than that.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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