Hi all, I'm trying to get a power analysis for a health care study that will evaluate incidence rate ratio of an event (predicted variable as counts and few categorical and continuous independent predictors). I tried to find a way to do it in SAS, but I can't seems to find the right code. I tried Cox Regression, code below, but I'm not sure if this will give me the same power results as those estimating for Poisson regression, as one takes into account time to event and the other the counts or rates only...any suggestions on how to proceed ? Thanks. ods noproctitle; ods graphics / imagemap=on; proc power; coxreg test=score sides=2 ntotal=13000 eventprob=0.017 alpha=0.05 hazardratio=1.2 1.5 rsquare=0 0.3 stddev=1.1 power=.; plot x=n; run;
... View more