Bioequivalence Data Analysis

Bioequivalence is a package for performing bioequivalence data analysis.

The full API is available in the next section and provides the signatures and examples for using all the available functionality.

Quickstart

In order to use Bioequivalence, load the package through:

using Bioequivalence

A bioequivalence study is an instance of the type BioequivalenceStudy and can be constructed through the pumas_be function. Alternatively, one can use preprocess_be and run_be to first prepare the data and run the analysis in separate steps.

What is bioequivalence?

Bioequivalence is a concept in pharmacokinetics that captures the idea that various pharmaceutical products administrated similarly (e.g., same molar dose of the same active ingredient, route of administration) can be expected to have, for all intents and purposes, the same effect on individuals in a defined population.

Clinical studies collect data which can be analyzed such as through noncompartmental analysis to obtain insightful descriptions about the concentration curve also known as pharmacokinetic endpoints. These endpoints relate to the rate (e.g., maximum concentration, time of peak concentration) and extent of absorption (e.g., area under the curve). Bioequivalence relies on the study design and pharmacokinetic endpoints from clinical trials or simulation models to make a determination about the expected effects of formulations.

Three major types of bioequivalence studies are regularly used:

  1. Average (ABE): are the mean values of the distributions of the pharmacokinetic endpoints for the reference and the test formulations similar enough? The concept is the most popular with a rise in adoption in the early 1990's by the United States and the European Union. It is considered to be the easiest criterion for a new formulation to achieve bioequivalence. It is required by most regulatory agencies for the product to be approved under a bioequivalence process.
  2. Population (PBE): are the distributions of the pharmacokinetic endpoints for the reference and the test formulations similar enough? In this case, it is no longer comparing just the expected value of the distributions but the full distribution. PBE is especially important for determining prescribability or the decision to assign a patient one of the formulations as part of a treatment for the first time.
  3. Individual (IBE): are the distributions of the pharmacokinetic endpoints for the reference and the test formulations similar enough across a large proportion of the intended population? IBE is particularly relevant for switchability or the decision to substitute an ongoing regimen (change formulation) without detrimental effects to the patient.

PBE and IBE can be assessed through three different methods:

  1. Constant scaling: the regulatory agency provides a value to be used in determining PBE or IBE.
  2. Reference scaling: the estimated total variance of the reference formulation is used for determining PBE or IBE.
  3. Mixed scaling: use reference scaling when the estimated total variance of the reference formulation is greater than that of the test formulation and the constant scaling otherwise.
Note

One argument for using the mixed scaling is that if the estimate of the total variance of the test formulation is greater than that of the reference, then bioequivalence would be very conservative.

Info

The reference scaling method is mostly used when working with highly variable drugs (HVD), those with intrasubject variability > 30%, and narrow therapeutic index drugs (NTI), those drugs where small differences in dose or blood concentration may lead to serious therapeutic failures and/or adverse drug reactions that are life-threatening or result in persistent or significant disability or incapacity.

Designs

There are three major categories of bioequivalence study designs.

Nonparametric for endpoints such as time of maximum concentration which typically do not have (nor can easily transformed) a normal-like distribution.

Parallel designs which are typically used when crossover designs are not feasible.

Crossover (replicated and nonreplicated) designs which are the most commonly used by the industry.

Designs are fully characterized by:

  • Subjects: participants in the study (each is assigned to a sequence)
  • Formulations: the different formulations being compared (i.e., reference and additional test formulations)
  • Periods: each dosing period at which each subject is administrated a formulation based on the sequence it has been assigned to
  • Sequences: a dosing regimen which establishes what formulation is given at each period
Warning

The periods should be spaced enough such that there are no carryover effects from dosings in the previous periods.

Nonparametric analysis (i.e., x formulations, y sequences, z periods)

With a nonparametric design, the bioequivalence analysis is to perform a a Wilcoxon signed rank test of the null hypothesis that the distribution of the reference formulation and the distribution of an alternative formulation have the same median.

When there are no tied ranks and ≤ 50 samples, or tied ranks and ≤ 15 samples, it will perform an exact signed rank test. Otherwise an approximate signed rank test is carried out.

Since the study design can be inferred from the data argument (i.e., based on sequences, formulations, and periods), the inferred study design approach will be automatically selected. One can manually overwrite the method for the nonparametric option by selecting nonparametric = true in pumas_be.

Parallel design (i.e., x formulations, y periods, z sequences, e.g. R|S|T)

Perform a Welch's t-test (i.e., unequal variance two-sample t-test) of the null hypothesis that the distribution of the reference formulation and the distribution of an alternative formulation have equal means. The value of degrees of freedom of the test is determined via the Welch-Satterthwaite formula:

\[ν_{χ'} ≈ \frac{\left(\sum_{i=1}^n k_i s_i^2\right)^2}{\sum_{i=1}^n \frac{(k_i s_i^2)^2}{ν_i}}\]

Crossover designs

Crossover designs are divided into two categories:

  1. Nonreplicated
  2. Replicated

Replicated crossover designs are those with subjects receiving the same formulation multiple times. A key feature of replicated designs is that it allows estimating within-subject variances per formulation which is key for highly variable drugs and narrow therapeutic index drugs.

Analysis of crossover designs

Nonreplicated crossover designs are analyzed through a linear model

\[\log\left(endpoint\right) = β₀ + β₁ formulation + β₂ period + β₃ id + ε\]

where β_j, j ∈ \{1, 2, 3\}, are vectors for features where formulation and id use indicators and period uses contrast coding.

Replicated crossover designs are by default fitted with a linear mixed model that allows for separate variance components for each formulation (homogeneity = false):

log(endpoint) ~
    formulation +
    sequence +
    period +
    (formulation + 0 | id) +
    zerocorr(formulation + 0 | row)

which is preferred by the U.S. Food and Drug Administration (FDA). The European Medicines Agency's (EMA) labels this model "Method C". EMA's preferred model for replicated crossover design (labeled "Method B") assumes equal variances for all formulations (homogeneity = true), i.e.

log(endpoint) ~ formulation + sequence + period + (1 | id)
Tip

The default estimator uses restricted maximum likelihood (REML) as the objective. One can request the maximum likelihood objective function through passing reml = false argument to pumas_be or run_be.

Supported designs

DescriptionTreatmentsPeriodsSequencesReplicatedCrossover
R|T212NoNo
RT|TR222NoYes
RR|RT|TR|TT224NoYes
RTR|TRT232FullyYes
RTR|TRR232PartiallyYes
RTT|TRR232FullyYes
RRT|RTR|TRR233PartiallyYes
RTRT|TRTR242FullyYes
RRTT|TTRR242FullyYes
RTTR|TRRT242FullyYes
RRTT|RTTR|TRRT|TTRR244FullyYes
RTRT|RTTR|TRRT|TRTR244FullyYes
RR|TT2>12FullyNo
RST|RTS|SRT|STR|TRS|TSR336NoYes
ADBC|BACD|CBDA|DCAB444NoYes
Note

In the United States, there is a minimum requirement of at least 12 evaluable subjects for any bioequivalence study.

Validation

Each design has been tested using various sources including:

  • Chow, Shein-Chung, and Jen-pei Liu. 2009. Design and Analysis of Bioavailability and Bioequivalence Studies. 3rd ed. Chapman & Hall/CRC Biostatistics Series 27. Boca Raton: CRC Press. DOI: 10.1201/9781420011678.
  • Fuglsang, Anders, Helmut Schütz, and Detlew Labes. 2015. "Reference Datasets for Bioequivalence Trials in a Two-Group Parallel Design." The AAPS Journal 17 (2): 400–404. DOI: 10.1208/s12248-014-9704-6.
  • Patterson, Scott D, and Byron Jones. 2017. Bioequivalence and Statistics in Clinical Pharmacology. 2nd ed. Chapman & Hall/CRC Biostatistics Series. DOI: 10.1201/9781315374161.
  • Schütz, Helmut, Detlew Labes, and Anders Fuglsang. 2014. "Reference Datasets for 2-Treatment, 2-Sequence, 2-Period Bioequivalence Studies." The AAPS Journal 16 (6): 1292–97. DOI: 10.1208/s12248-014-9661-0.
  • Schütz H, Tomashevskiy M, Labes D, Shitova A, González-de la Parra M, Fuglsang A.
    1. Reference Datasets for Studies in a Replicate Design Intended for
    Average Bioequivalence with Expanding Limits. AAPS J. 22(2): Article 44. DOI: 10.1208/s12248-020-0427-6.