Dear all,
package
replicateBE
is on CRAN. Background information in its
Vignette.
Data can be imported from CSV- or XLS(X)-files. Following ten designs are covered:
- Four period full replicates
- TRTR | RTRT
- TRRT | RTTR
- TTRR | RRTT
- TRTR | RTRT | TRRT | RTTR
- TRRT | RTTR | TTRR | RRTT
Two period full replicateThree period full replicatesThree period partial replicates- TRR | RTR | RRT
- TRR | RTR 2
Implemented:
- Estimation of CVwR (and CVwT in full replicates)
A linear model of log-transformed PK responses and effects
sequence, subject(sequence), period
of the reference (and test, if possible) treatment – where all effects are fixed (i.e., ANOVA).
Estimated via function lm()
of library stats
.
In full replicate designs assessment of \(s_{wT}/s_{wR}\) and the upper confidence limit of \(\sigma_{wT}/\sigma_{wR}\) for the WHO’s reference-scaling of AUC.
- Method A
A linear model of log-transformed PK responses and effects
sequence, subject(sequence), period, treatment
– where all effects are fixed (i.e., ANOVA).
Estimated via function lm()
of library stats
.
- Method B
A linear mixed model of log-transformed PK responses and effects
sequence, subject(sequence), period, treatment
– where subject(sequence) is a random effect and all others are fixed.
Three options
- Estimated via function
lme()
of library nlme
. Uses degrees of freedom equivalent to SAS’ DDFM=CONTAIN
and Phoenix/WinNonlin’s DF Residual
. Implicitly preferred according to the EMA’s Q&A document and hence, the default.
- Estimated via function
lmer()
of library lmerTest
. Uses Satterthwaite’s degrees of freedom equivalent to SAS’ DDFM=SATTERTHWAITE
and Phoenix/WinNonlin’s DF Satterthwaite
. This is the only option available in SPSS.
Potentially better for highly incomplete data.
- Estimated via function
lmer()
of library lmerTest
. Uses the Kenward-Roger approximation equivalent to SAS’ DDFM=KENWARDROGER
. This is the only option available in JMP.
Potentially better for highly incomplete data.
- ABE
Conventional Average Bioequivalence. Optionally with tighter (EMA: NTIDs) or wider limits (GCC: Cmax).
Assessment of potential outliers in the ABEL-methods is done by box plots of studentized model residuals.
Installation/Update of the latest release from
CRAN with
install.packages("replicateBE", repos = "https://cloud.r-project.org/")
Installation of the development version from
GitHub:
devtools::install_github("Helmut01/replicateBE")
Enjoy!
Bug reports to
GitHub or the
maintainer.
- Balaam’s design (not recommended due to poor power characteristics).
- Extra-reference design; biased in the presence of period effects (design not recommended).