msabe {adaptIVPT} | R Documentation |
This function runs hypothesis testing for bioequivalence using the mixed criterion
msabe(Test, Reference, params = list())
Test |
An n-by-r matrix of test product data. |
Reference |
An n-by-r matrix of reference product data. |
params |
(Optional) The list of tuning parameters for running the test.
|
A list of lists
parameters
- A list of true parameter settings.
fout
- The test result and related estimators.
runtime
- The total elapsed time charged for the execution of the program.
Daeyoung Lim, daeyoung.lim@uconn.edu
Davit, B. M., Chen, M. L., Conner, D. P., Haidar, S. H., Kim, S., Lee, C. H., Lionberger, R. A., Makhlouf, F. T., Nwakama, P. E., Patel, D. T., Schuirmann, D. J., & Yu, L. X. (2012). Implementation of a reference-scaled average bioequivalence approach for highly variable generic drug products by the US Food and Drug Administration. The AAPS journal, 14(4), 915-924.
n <- 6
r <- 3
Test <- matrix(runif(n*r), nrow = n, ncol = r)
Reference <- matrix(runif(n*r), nrow = n, ncol = r)
out <- msabe(Test, Reference)