msabe {adaptIVPT} | R Documentation |
Run the mixed scaling approach in bioequivalence (BE) studies
Description
This function runs hypothesis testing for bioequivalence using the mixed criterion
Usage
msabe(Test, Reference, params = list())
Arguments
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.
|
Value
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.
Author(s)
Daeyoung Lim, daeyoung.lim@uconn.edu
References
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.
Examples
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)