Hi all,
Could you please help with the statistics evaluation.
I need to calculate: Risk Ratio, 95% CI of Risk Ratio and p-value with method of Chan and Zhang(1999).
Could you please say the syntax of Proc Freq for the case?
Thank you!
Hi @DmytroYermak,
According to the SAS/STAT 14.3 documentation, that method is the new default, so the RELRISK option of the EXACT statement is sufficient:
exact relrisk;
In earlier SAS/STAT versions (up to 14.2) you had to specify
exact relrisk(method=score);
Hi @DmytroYermak,
According to the SAS/STAT 14.3 documentation, that method is the new default, so the RELRISK option of the EXACT statement is sufficient:
exact relrisk;
In earlier SAS/STAT versions (up to 14.2) you had to specify
exact relrisk(method=score);
There doesn't seem to be an option to compute a corresponding test (although the CI is based on one-sided exact tests). At least I can't find it, sorry. Maybe you can
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.