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...

 

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