The logit model part of a ZIP model models the extra zeros as the outcome, but my client wants the probability of a count greater than 0 instead. Is it appropriate to do 2 completely separate models - a proc logistic modeling count>0 and a proc genmod with the zeros excluded modeling the count part?
You can invert odds ratios by using the EVENT= option on the response variable on the MODEL statement.
Instead of
model y(event="0") = x1 x2 x3;
you can invert the odds ratio by using
model y(event="1") = x1 x2 x3;
I think I would stick with the ZIP model. You can use GENMOD or PROC FMM. The model will predict the probability of a zero count, which is P(Y=p | x). The client wants "one minus that predicted probability": 1 - P(Y=0| x)
They are more interested in the odds ratios being in the right direction, can I just invert them?
You can invert odds ratios by using the EVENT= option on the response variable on the MODEL statement.
Instead of
model y(event="0") = x1 x2 x3;
you can invert the odds ratio by using
model y(event="1") = x1 x2 x3;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.