Old references… [Power / Sample Size]
❝ […] i will be very grateful if you forward me the scan of the article and others if you have any.
Check your inbox.

But again: Don’t rely on the results. An
study n CV.AUC CI.CV.AUC CV.Cmax CI.CV.Cmax
1 24 15.1% 11.7–21.5% 16.3% 12.6–23.2%
2 12 9.5% 6.6–16.8% 12.1% 8.4–21.4%
What shall we think about the three studies of 300 mg IR ranitidine in twelve subjects? The CV of AUC0–∞ in the third was twice the one of the second, whereas the CVs of Cmax were similar. On the other hand, the CV of Cmax in the first was twice the one of the third. That’s not helpful.
If you don’t find references for your drug with more consistent results, I recommend a pilot study or – possibly better – a two-stage design.
library(PowerTOST)
studies <- 2L
n <- c(24L, 12L)
CV.AUC <- c(15.1, 9.5)
CV.Cmax <- c(16.3, 12.1)
res <- data.frame(study = 1:studies, n = n,
CV.AUC = CV.AUC, CI.CV.AUC = NA_real_,
CV.Cmax = CV.Cmax, CI.CV.Cmax = NA_real_)
for (j in 1:nrow(res)) {
tmp <- 100 * CVCL(CV = res$CV.AUC[j] / 100,
df = res$n[j] - 2,
side = "2-sided")
res$CI.CV.AUC[j] <- paste0(sprintf("%.1f", tmp[1]), "\u2013",
sprintf("%.1f%%", tmp[2]))
tmp <- 100 * CVCL(CV = res$CV.Cmax[j] / 100,
df = res$n[j] - 2,
side = "2-sided")
res$CI.CV.Cmax[j] <- paste0(sprintf("%.1f", tmp[1]), "\u2013",
sprintf("%.1f%%", tmp[2]))
}
res$CV.AUC <- sprintf("%4.1f%%", res$CV.AUC)
res$CV.Cmax <- sprintf("%4.1f%%", res$CV.Cmax)
print(res, row.names = FALSE)
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:
- Need help downloading a publication selwa ts 2021-09-13 15:25 [Power / Sample Size]
- Old references… Helmut 2021-09-13 15:52
- Old references… selwa ts 2021-09-14 12:51
- Old references…Helmut 2021-09-14 17:46
- Old references… selwa ts 2021-09-14 12:51
- Old references… Helmut 2021-09-13 15:52