hiren379 ★ India, 2013-02-19 15:40 (4448 d 21:54 ago) Posting: # 10057 Views: 9,808 |
|
Hello All, Can someone help me in calculating appropriate sample size for a drug (relatively safe drug with very few drop outs expected due to AE) having T/R = 0.90 and % CVintra = 60 for a Reference Replicated Pivotal BE study (3 period)? We opt for 80% power...!!! |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2013-02-19 16:22 (4448 d 21:12 ago) @ hiren379 Posting: # 10058 Views: 8,618 |
|
Hi Hiren! ❝ […] appropriate sample size for a drug […] having T/R = 0.90 and % CVintra = 60 for a Reference Replicated Pivotal BE study (3 period)? We opt for 80% power...!!! Which regulation: FDA or EMA?
sampleN.RSABE ) is not available in the current official release of PowerTOST (v1.1-00). I used a private copy of 1.1-01 provided by Detlew. I guess he will upload it to CRAN returning from his vacation in two weeks. In the meantime see the approximation in v1.1-00:
See also Tóthfalusi and Endrényi (2011)* – Tables A1 and A3 for GMR 0.9, CV 60%, 80% power: EMA: 46 (round up to the next multiple of three: 48) FDA: 31 (round up to the next multiple of three: 33)
— Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
Ken Peh ★ Malaysia, 2013-02-20 13:45 (4447 d 23:49 ago) @ Helmut Posting: # 10076 Views: 8,372 |
|
Dear Helmut, Is PowerTost a commercial software ? Do we need to subscribe to gain access to this wonderful software ? I would very much love to have it for my work. Thank you. Regards, Ken |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2013-02-20 15:04 (4447 d 22:30 ago) @ Ken Peh Posting: # 10077 Views: 9,966 |
|
Dear Ken! ❝ Is PowerTost a commercial software ? Do we need to subscribe to gain access to this wonderful software ? ![]() ![]() First you have to install the statistical software R (mirror closest to Malaysia is maintained at the Department of Statistics and Applied Probability of the National University of Singapore; available for Linux, MacOS X, and Windows). Once installed start the R-console > Packages > Install package(s)… > CRAN mirror > OK . You need two packages: mvtnorm and PowerTOST (select them in the drop-down list).To start type load(PowerTOST) library(package) or require(PowerTOST) . Type help(package=PowerTOST) in the R-console to display the documentation in your bowser.There are some other packages which might be of interest. Incomplete list:
— Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
Ken Peh ★ Malaysia, 2013-02-24 10:38 (4444 d 02:55 ago) @ Helmut Posting: # 10114 Views: 8,289 |
|
Dear Helmut, ❝ There are some other packages which might be of interest. […] Thank you very much for providing the link to the software packages above. Very useful to our work. As I am not good in computer, will need time to understand how to operate the software. I presume the installation and instruction to run the software is the same as R/PowerTOST. Regards, Ken Edit: Full quote removed. Please delete everything from the text of the original poster which is not necessary in understanding your answer; see also this post! [Helmut] |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2013-02-24 18:00 (4443 d 19:34 ago) @ Ken Peh Posting: # 10115 Views: 8,309 |
|
Dear Ken! ❝ I presume the installation and instruction to run the software is the same as R/PowerTOST. Yes. Once you installed a package and loaded it – by load(package) library(package) or require(package) – you can always get instructions by help(package="…") .Write your scripts in any text-editor and save it with the extension .R (not .txt !). Once in the R-console > File > Source R code… (navigate to the *.R -file > Open ) runs the script.I prefer require(package) over load(package) library(package) because the former loads the package only if not already loaded (saves some fractions of a second). ![]() P.S.: In the future please delete everything from the text of the original poster which is not necessary in understanding your answer; see also this post!
— Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |
d_labes ★★★ Berlin, Germany, 2013-02-28 22:20 (4439 d 15:14 ago) @ Helmut Posting: # 10136 Views: 8,400 |
|
Dear Helmut! ❝ I prefer > load(PowerTOST) From the help file of load(): load {base} R Documentation May be you meant library(PowerTOST) instead of load(PowerTOST) or missed I somefink here?I must confess that I never understood really the difference between require(...) and library(...) BTW: @Ken Peh and hiren379: PowerTOST version 1.1-02 is on the way now which makes accessible the function sampleN.RSABE() and also the complementary function power.RSABE() not only to Helmut, my favorite nitpicking power tester, but to the general audience. But be patient ... Maybe it takes a couple of days until it arrives on you.— Regards, Detlew |
Helmut ★★★ ![]() ![]() Vienna, Austria, 2013-03-01 17:22 (4438 d 20:12 ago) @ d_labes Posting: # 10141 Views: 8,148 |
|
Dear Detlew, welcome back; hope you had a nice vacation. ![]() ❝ ❝ I prefer ❝ May be you meant Oops; sure. ❝ I must confess that I never understood really the difference between require(…) loads the package only if not already loaded. library(…) loads in all cases. Therefore the former might be a little bit faster.Edit: PowerTOST 1.1-02 (2013-02-28) available at CRAN. — Dif-tor heh smusma 🖖🏼 Довге життя Україна! ![]() Helmut Schütz ![]() The quality of responses received is directly proportional to the quality of the question asked. 🚮 Science Quotes |