Potvin B: α 0.0294 in both stages [Two-Stage / GS Designs]
❝ Cmax CVintrasub (0.387) Ratio(%Ref) (81.439)
Later you wrote:
❝ We have worked with CI of 94.12 and alpha 0.0294
I don’t think so; with your data:
library(PowerTOST)
round(100*CI.BE(alpha=0.0294, pe=0.81439, CV=0.387, n=36), 3)
lower upper
68.558 96.740
round(100*CI.BE(alpha=0.0500, pe=0.81439, CV=0.387, n=36), 3)
lower upper
70.173 94.514
Adding to this post:
find_alpha <- function(x) {
require(PowerTOST)
CI <- CI.BE(alpha=alpha, pe=pe, CV=CV, n=n)
closer <- CI[which.min(abs(CI - 1))]
CI.BE(alpha=x, pe=pe, CV=CV, n=n)[names(closer)]-1
}
n <- 36
pe <- 0.81439
CV <- 0.387
alpha <- 0.0294
p <- uniroot(find_alpha, interval=c(1e-6, 0.5),
tol=1e-8)$root
if (p < alpha) {
cat(paste0("\n100% is not included in the ",
"100(1\u002d2\u03b1) = ", 100*(1-2*alpha),
"% confidence\ninterval; treatments are ",
"significantly different (p ", signif(p, 4), ").\n\n"))
} else {
cat(paste0("\nTreatments are not significantly different ",
"(p ", signif(p, 4), ").\n\n"))
}
100% is not included in the 100(1-2α) = 94.12% confidence
interval; treatments are significantly different (p 0.01289).
Do you really think that it is reasonable to continue?
Dif-tor heh smusma 🖖🏼 Довге життя Україна!
![[image]](https://static.bebac.at/pics/Blue_and_yellow_ribbon_UA.png)
Helmut Schütz
![[image]](https://static.bebac.at/img/CC by.png)
The quality of responses received is directly proportional to the quality of the question asked. 🚮
Science Quotes
Complete thread:
- Sequential trial with B method of Potvin john john 2015-10-01 17:44 [Two-Stage / GS Designs]
- Sequential trial with B method of Potvin ElMaestro 2015-10-01 17:58
- Sequential trial with B method of Potvin Helmut 2015-10-01 18:13
- Sequential trial with B method of Potvin john john 2015-10-07 11:26
- Power to the people d_labes 2015-10-07 13:49
- Power to the people john john 2015-10-07 14:54
- Software? Ethics beyond statistics… Helmut 2015-10-07 16:06
- Subtraction of a df ElMaestro 2015-10-07 21:22
- df = df-1 d_labes 2015-10-08 08:10
- Subtraction of a df ElMaestro 2015-10-07 21:22
- Software? Ethics beyond statistics… Helmut 2015-10-07 16:06
- Power to the people john john 2015-10-07 14:54
- Potvin B: α 0.0294 in both stagesHelmut 2015-10-08 15:27
- Potvin B: α 0.0294 in both stages john john 2015-10-23 12:04
- Power to the people d_labes 2015-10-07 13:49
- Sequential trial with B method of Potvin john john 2015-10-07 11:26