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

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 248 views
  • 0 likes
  • 2 in conversation