Power calculation from Partial replicate study [General Statistics]
Hi all (I think Helmut will hate this topic heheh).
Would the following code be applicable for partial replicate study also?
From Proc GLM (of FDA's HVD SAS RSABE code), I can extract the df and StdErr.
I know this is a post-hoc thingy but am just interested.
Thanks
John
Would the following code be applicable for partial replicate study also?
lbl=log(.8);
ubl=log(1.25);
ci=90; /*either 90 or 95 */
p=(1-(CI/100))/2;
ctt=tinv(p,df);
ctt=abs(ctt);
t1=ctt+(lbl/StdErr);
t2=-ctt-(ubl/StdErr);
p1=probt(t1,df); p2=probt(t2,df);
pwr=1-(p1-p2);
pwr=ROUND(100*pwr,0.01);From Proc GLM (of FDA's HVD SAS RSABE code), I can extract the df and StdErr.
I know this is a post-hoc thingy but am just interested.
Thanks
John
Complete thread:
- Power calculation from Partial replicate studyjag009 2013-05-16 16:18 [General Statistics]
