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.

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

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