This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Multiple Endpoint FO/FOi
A comprehensive collection of non-linear mixed effect (nlme) model algorithms:
- First Order Estimation (
FO) with FOCE post-hoc etas
## eg
nlmixr(modelfn, data, "fo"); # has FOCE post-hoc ETAs- First Order Estimation (
FO) with FOCEi post-hoc ETAs
## eg
nlmixr(modelfn, data, "foi"); # has FOCEi post-hoc ETAs- First Order Conditional Estimate (
FOCE)
## eg
nlmixr(modelfn, data, "foce");- First Order Conditional Estimate with interaction (FOCEi),
## eg
nlmixr(modelfn, data, "focei");- Adaptive Gaussian quadrature (with Laplacian approximation as a special case see
glmmandglmm2), - Stochastic Approximation Estimation-Maximization (SAEM).
## eg
nlmixr(modelfn, data, "saem")- Traditional R
nlme
## eg
nlmixr(modelfn, data, "nlme")Other features
- A minimalist, intuitive, expressive, and domain-specific nlme modeling language.
- The capability of joint modeling of multiple endpoints.
- A revamped SAEM engine with improved speed and stability.
- The capability of out-of-box Visual Predictive Checks (VPC) after a model fit.
- The capability of out-of-box sophisticated Clinical Trial Simulation (CTS) after a model fit.
- The capability of an out-of-box comprehensive diagnostic kit with a direct hook to xpose after a model fit.
- The capability of modeling “odd type” data, including binary data, count data, and bounded clinical endpoint (e.g., ADAS-cog has a range of 0 to 70).
- Parallel computing ODE solving via the openmp package -- an industry's first among the current population PK/PD simulators to the best of our knowledge.
- An intuitive, powerful, graphic user interface (GUI) based project manager in shinyMixR.
New in this release
This added a few things
foandfoiestimation routines- Multiple endpoint UI support:
- SAEM bugfix
## Error in model block
## cp1 is modeled by additive error for compartment depot
cp1 ~ add(add.err1) | depot
cp2 ~ add(add.err2) | central