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!
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:
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 16. Read more here about why you should contribute and what is in it for you!
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.