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.

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

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