Hello everyone,
When I use the PROC POWER with PAIREDMEANS and TEST=EQUIV_RATIO, what Confidence Interval provides the procedure for the sample size with alpha=0.05 ? A 95% CI or a 90% CI because equiv_ratio is based on two one-side tests ?
Thank you,
Clg
For an equivalence test the specified ALPHA= value provides the sample size for a (1-2α)100% confidence interval on the mean ratio. So if you specify alpha=0.05, then you get a 90% confidence interval on the mean ratio.
For an equivalence test the specified ALPHA= value provides the sample size for a (1-2α)100% confidence interval on the mean ratio. So if you specify alpha=0.05, then you get a 90% confidence interval on the mean ratio.
Hello,
I have another question. Now, if I use TEST=RATIO (and not equiv_ratio) and that I want an 90% confidence interval with a one-sided test; I use "Sides=U" (or L) and I put alpha=0.1, it's right ?
Thank you.
Yes, that is correct.
My apologizes for this another question. If I done the following SAS Code, I compare if the ratio 1.5 is different that 1.25 with a 90% confidence interval also?
proc power;
pairedmeans test=ratio alpha=0.1
meanratio=1.5
nullratio=1.25
cv=0.17
npairs=.
corr=0
sides=2
power=0.9;
run;
Thank you
It is basically correct.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.