BookmarkSubscribeRSS Feed
docfermi
Calcite | Level 5

I am trying to see whether there is a significant upward or downward trend in certain infection over time.  I calculated rates/95% confidence intervals using proc genmod.  Can I use Cochran-armitage test (year vs. mean proportion) for trends?  If not, what method would be appropriate?

3 REPLIES 3
Ksharp
Super User

Does your data like Contingency Table ? If it was ,check PROC FREQ + TREND option.

Or try ANOVA via PROC GLM .

docfermi
Calcite | Level 5

I got yearly rates with below:

 

proc genmod data=cdi;

 class year sex age_group / param=glm;

model cdiff= year sex age_group / type3 dist=poisson link=log offset=log_discharge;

estimate "rate: year=2003" intercept 1 year 1 0 0 0 0 /e

.........;run;

 

I would appreciate sas codes or references for trend analyses.

Ksharp
Super User

Since all your independent variables are CLASS variables, then your data indeed like a contingency table.

Check PROC FREQ + TEAND option. there is an example of it in PROC FREQ's documentation.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 1429 views
  • 0 likes
  • 2 in conversation