BookmarkSubscribeRSS Feed
acelini
Fluorite | Level 6

I am a SAS newbie. 

I am attempting to calculate the person years at risk (personyrs) of an ethnic group being diagnosed with a disorder by age group and gender for comparison with a standard population. What sort of expression would I use to calculate this?

 

To calculated the unadjusted incidence rates, I used the following expression to calculate the person years of risk:

 

proc print data=primhd.diagnoses;

var personyrs;

where disorder=1 and ethnicity=1;

sum personyrs;

run;

 

I am using a national data hence there is a massive number of observations. There has to be an easier way to calculate this without the resulting table with all the relevant observations.  

 

To summarise all the variables of interest included to calculate the personyrs at risk:

disorder, ethnicity (boolean expressions for different disorders and ethnicities), agegrp and lastly gender

 

Thanks in advance!

 

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Use proc means:

proc means data=primhd.diagnoses (where=(disorder=1 and ethnicity=1));
  var personyrs disorder ethinicity agegrp gender;
  output out=want;
run;

To get better answers post some sample test data in the form of a datastep, if you don't know how use this post:

https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-dat...

 

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
  • 1 reply
  • 666 views
  • 0 likes
  • 2 in conversation