BookmarkSubscribeRSS Feed
LucyB
Obsidian | Level 7

I have an outcome frequency over a variable number of years per patient. I have converted this to a rate per year and would like to investigate differences bet a certain category. The rates are overdispersed and zero inflated. How can I code a zero inflated negative binomial model in SAS for this rate outcome?

3 REPLIES 3
LucyB
Obsidian | Level 7

what about countreg?

 

e.g:

proc countreg data=data;
    model rate = category covariate / dist=zinb method=qn;
    zeromodel rate ~ category covariate;
run;

 

 

I was not sure how to model the zeromodel..

Ksharp
Super User

I don't know PROC COUNTREG is under SAS/ETS, it is for time series.

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 ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1800 views
  • 0 likes
  • 2 in conversation