The SCALE=P option in PROC GENMOD is one way to address overdispersion, as explained in the documentation below --
PROC GLIMMIX does not have this option, it uses a separate statement to address overdispersion -
random _residual_;
This is explained in the link below --
https://go.documentation.sas.com/doc/en/pgmsascdc/v_021/statug/statug_glimmix_details05.htm
Hi, My outcome is count with an offset.
You could change it into Binomial Distribution, and feed it into PROC LOGISTIC . n c age 10 2 1 4 1 2 ----> y age 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 2 0 2 0 2 0 2 And using: model Y(event='1') = age; Or just usa another style of MODEL statement: model c/n = age; Note: This assuming Binomial Distribution , Not Poisson Distribution, But I think they are almost the same thing, since Poisson is modeling for more discrete data, as long as your data is NOT so discrete ,Binomial is more than suffice .
Thanks for the information. My data is very discrete with overdispersion. I need to either adopt scaled variance with Poisson distribution or negative binomial distribution.
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.