BE-proff ● 2016-12-14 09:56 (3072 d 12:49 ago) Posting: # 16843 Views: 6,917 |
|
Hi All, Let's say I want to calculate sample size for a BE-study using the following data: CVintra of Cmax= 39.8% Power= at least 80% GMR = 1.15 I want to utilize 2x2x4 design with reference scaling and PowerTOST gives me: library(PowerTOST) Is it correct that: - at least 48 subjects to be randomized - CI for Cmax is 0.74 - 1.34 - CIs for AUCs are 0.80-1.25 |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2016-12-14 17:24 (3072 d 05:21 ago) @ BE-proff Posting: # 16845 Views: 6,208 |
|
Hi BE-proff, ❝ ❝ THX for being concerned about the consumer risk! With a CVwR of 39.8% we can expect a slight inflation of the Type I Error (TIE). ❝ Is it correct that: ❝ - at least 48 subjects to be randomized Yes. ❝ - CI for Cmax is 0.74 - 1.34 No. For Cmax the expanded limits are 0.7472...1.3383. The confidence interval has to lie entirely within these limits and additionally the PE must lie within 0.8–1.25. Note that you have to use an adjusted α. Only if the CVwR in the study would be exactly as assumed and there will be no dropouts, you could used the adjusted α from the sample size estimation above and calculate the 100(1–2×0.04444)=91.112% CI. If you observe a different CVwR in the study (likely) and there were dropouts you have to check whether the original iteratively adjusted α still suits and – if not – get a new one based on the study’s data. Examples for one dropout in the first sequence and two in the other:
❝ - CIs for AUCs are 0.80-1.25 The acceptance limits. — Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
BE-proff ● 2016-12-14 20:43 (3072 d 02:03 ago) @ Helmut Posting: # 16846 Views: 5,863 |
|
Hi Helmut, Many thanks for your very detailed explanation! ![]() It really helps! |
BE-proff ● 2016-12-20 22:47 (3065 d 23:58 ago) @ Helmut Posting: # 16868 Views: 5,717 |
|
Hi Helmut, Which R script should be used to assess BE in 92.18% CI? ![]() Afaik, "classic" BE is analysed in 90% CI. Correct? ![]() |
d_labes ★★★ Berlin, Germany, 2016-12-21 12:15 (3065 d 10:30 ago) @ BE-proff Posting: # 16870 Views: 5,691 |
|
Dear BE-prof! ❝ Which R script should be used to assess BE in 92.18% CI? A serious script should IMHO not have a hard coded alpha=0.05 or the other way round a hard coded 90% CI. But rather allow the specification of the alpha to use. Have a look into the function CI.BE() of the package PowerTOST .For a 92.18% CI specify alpha=(1-0.9218)/2=0.0391, give the point estimate, CV and number of subjects in your study and voila you get the 1-2*alpha CI. Example: CI.BE(alpha=(1-0.9218)/2, pe=1.1557, CV=0.3567, n=24, design="2x2") Now compare this to the (widened) acceptance range to judge BE or not BE. ❝ Afaik, "classic" BE is analysed in 90% CI. Correct? — Regards, Detlew |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2016-12-21 19:09 (3065 d 03:37 ago) @ d_labes Posting: # 16871 Views: 5,859 |
|
Hi Detlew! I guess BE-proff was referring to this post. This one should do it all: library(PowerTOST) Voilà!
Higher CVwR 41% when the inflation of the Type I Error will hit no more:
CVwR 28%; no reference-scaling but still some adjustment required:
Even lower CVwR 27%:
CVwR 80% (!) and point estimate 124% (‼) for Health Canada’s conditions. Amazing.
— Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |