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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 5445 views
  • 0 likes
  • 3 in conversation