A study was powered for a non-inferiority test. However, the PI wants to know if a superiority test is possible now that we've seen the results, i.e., wants to claim one product is superior to the other since the GMT 95% CIs do not overlap.
(1) Is it worth checking what the power would be with our final sample size?
(2) If so, would I use the results I have (geometric mean and log10 SD) rather than theoretical outcomes?
/*sample code*/
proc power;
twosamplemeans test=diff nfrac
meandiff = Actual_MeanDiff
sides = 2
alpha = 0.05
groupstddevs= (Actual_SD1 Actual_SD2)
groupNs= (Actual_N1 Actual_N2)
power = .;
run;