PFIM 7.0 – What’s New

<style> body { max-width: 960px; margin: 2em auto; font-family: “Lato”, “Helvetica Neue”, Helvetica, Arial, sans-serif; line-height: 1.7; color: #DDD; background-color: #121212; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

h1, h2, h3 { margin-top: 1.5em; margin-bottom: 0.75em; font-weight: 700; color: #EEE; }

pre, code { font-family: Consolas, Monaco, “Courier New”, monospace; font-size: 90%; background-color: #1E1E1E; color: #DDD; padding: 0.3em 0.5em; border-radius: 4px; overflow-x: auto; }

a { color: #58A6FF; text-decoration: none; }

a:hover { text-decoration: underline; }

img { border: none; } </style>

This version fully replaces the version of PFIM 6.1

Complete Package Redesign

Key New Features

Migration Guide from PFIM 6.1 to PFIM 7.0

1. Equations of a user defined model

{r, echo = TRUE, comment='',eval=FALSE} modelEquations` = `list( outcomes = list( "RespPK", "RespPD" ), equations = list( "RespPK" = "dose_RespPK/V * ka/( ka - Cl/V ) * ( exp( -Cl/V *t ) - exp(-ka * t ) )", "RespPD" = "S0 * ( 1 - Imax * RespPK/( RespPK + C50 ) )" ) ) - PFIM 7.0: {r, echo = TRUE, comment='',eval=FALSE} modelEquations = list( "RespPK" = "dose_RespPK/V * ka/( ka - Cl/V )*( exp( -Cl/V * t ) - exp( -ka * t ) )", "RespPD" = "S0 * ( 1 - Imax * RespPK/( RespPK + C50 ) )" )

2. Model equations from the library of models.

PFIM 7.0 introduces modelFromLibrary for predefined models:

{r, echo = TRUE, comment='',eval=FALSE} modelFromLibrary = list( "PKModel" = "MichaelisMenten2InfusionSingleDose_VmKmk12k21V1V2", "PDModel" = "TurnoverRinEmax_RinEmaxCC50koutE" )

and the evaluation writes:

{r, echo = TRUE, comment='',eval=FALSE} evaluation = Evaluation( modelFromLibrary = modelFromLibrary, ... )

without the slots modelEquations.

3. Model error

The outcome od an error model is modified.

4. Arm

The specification of the dose in the initial conditions for an ode model is modified.

5. Administration constraints

The constraints for the administration for the design optimization is changed.

6. Evaluation

The evaluation outcomes are changed.

The specification of the Fim type is changed.

7. Output methods

The plot method for the sensitivity indices is changed.