BookmarkSubscribeRSS Feed
tony_miami
Calcite | Level 5
I'm pretty new to SAS coding and I'm a bit lost right now. How would you perform calculations with counts. For example, I want to get the rate of falls by type (same level falls, different level falls, etc... I created a variable to differentiate for each type of fall (same_fall, diff_fall).

How would I add up the type of falls and then divide it by the population?

Thanks,
1 REPLY 1
deleted_user
Not applicable
If you'd raised this in the Enterprise Guide forum my answer would have been slightly different, although the result would be the same.

It seems you want to perform a frequency analysis, you want a percentage for the frequency as a proportion of the population, and you want to perform it separately for each level of a variable that classifies a group to observe.

In Enterprise Guide there is a standard analysis task that will do everything for you. In Foundation SAS, your can simply run code similar to the following:

Proc Freq Data = MYLIB.MYDATA Missing;
Tables CLASSVAR;
Run;

This will produce frequencies for each level of classvar, and percentages for each class as well as the whole population.

Kind regards

David

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Health and Life Sciences Learning

 

Need courses to help you with SAS Life Sciences Analytics Framework, SAS Health Cohort Builder, or other topics? Check out the Health and Life Sciences learning path for all of the offerings.

LEARN MORE

Discussion stats
  • 1 reply
  • 816 views
  • 0 likes
  • 2 in conversation