summarise_phi()
and bar_phi()
summarizes the comparison of estimation of ‘mapbayr’ and ‘NONMEM’
(i.e. classifies it as Excellent/Acceptable/Discordant) and graphically
represents it as a bar plot.eta()
generates numerical values named
ETA1, ETA2, ETA3...
, either from scratch, from a
pre-existing vector or from a ‘mrgsolve’ model object.plot()
, PREDICTION = c("IPRED", "PRED")
controls to plot either “PRED”, “IPRED” or both (#113).add_covariates()
, covariates
is
relocated in last position, in the favor of ...
which now
accepts covariate values. Calling
add_covariates(list(BW = 90))
will still works (with a
warning) for the sake of compatibility but will be deprecated. Instead,
just use add_covariates(BW = 90)
or explicitly call
add_covariates(covariates = list(BW = 90))
if you want to
pass covariate values as a list (#156).get_eta()
, output = "num"
returns a
matrix if multiple IDs are available instead of an error message
(#145).postprocess.optim()
and
postprocess.output()
. Removed due to refactoring of
internal post-processing.adm_0_cmt()
.mapbayest()
, reset
is now a numeric and
drives the maximum allowed reset during optimization.check_mapbayr_model()
now returns an error if a check
fails instead of a table that summarized the errors.check_mapbayr_model()
now only checks critical points
and not suggested features.check_mapbayr_model()
now explicitly forbids
IPRED
, PRED
and ETA1, ETA2...
(#148).mapbayest(output = )
(#134).stats::optim()
if
method is ‘L-BFGS-B’ and minqa::newuoa()
if method is
‘newuoa’. These replace optimx::optimx()
(#136).optimx
package.tibble
package from dependency to
suggestion.vs_nonmem()
and get_phi()
works even if
covariance was missing/failing in mapbayests object (#126).pred()
does not generate NaN
if small
negative concentrations were predicted after log-transformation
(#140).pred()
does not propagate ‘mrgsolve’ error when lag
time is longer than inter-dose interval at steady-state (#142).NA
values in DV
if
mdv == 0
is checked (#131).check_mapbayr_model()
is now called before any use the
model inside mapbayest()
(#149).DV
if
error is exponential (#150).obs_lines()
, mdv
will be 1 if
DV
is set to NA
(#147).qmod
, omega_inv
and all_cmt
now
replace mrgsolve_model
, omega.inv
and
obs_cmt
. For individual-related elements, idDV
replaces DVobs
, data
is removed,
idvaliddata
and idcmt
are added. This can have
an impact for the user since these elements are reported in the standard
output. However, it does not change the behaviour of
get_data()
.mapbayest(verbose = TRUE)
now only displays the messages related to optimization reset, and not
the progression of ID being optimized which is now controlled by
mapbayest(progress = TRUE)
.derivatives()
, now replaced by
mapbayr:::h()
.mbrlib()
and associated models. See the
“Model examples” section below.The example models system was totally re-thought around a new
function: exmodel()
. It now embeds several models that were
used in the validation study, with a small corresponding dataset that
can be loaded automatically (the default). They are used in multiple
places inside the package, especially in tests and examples. More models
could be added in the future.
exmodel()
. See the list of available models in
the documentation.exdata()
, to load data only.mapbayest(progress = TRUE)
displays a
progress bar with the number of the ID being optimized. #118 #28mapbayest(output = "eta")
returns
only estimated ETA in order to skip most of post-processing steps.
#106eta_descr()
now always returns a non-NA value even if
description is missing. #87do_compute_ofv()
, a wrapper around
do.call(compute_ofv, ...)
.{progress}
.{testthat}
, {minqa}
.
#120R CMD check
.plot_phi()
now plots correct values on the x-axis.
#108NA
.
#114This version of mapbayr introduces several features that aim to express uncertainty around the point estimate. Please note that the results of these functions were not validated vs a gold-standard software such as NONMEM. This is why they are referred as “experimental features” in the following subsections. They are exported with the objective to ease their future validation, and to provide a very rough idea of the estimation uncertainty.
data
slot in estimation object. Use
get_data()
instead. #64$model@args$data
is now always NULL
in
the estimation object. It was carried out if the data was initially
passed with data_set()
or built with
adm_lines()
/obs_lines()
. #64augment
). Also use
recsort=3
to deal with steady-state administrations.
#85plot()
are now directly passed to
augment()
.collapse_omega()
function. (thanks @kylebaron)mapbayest(hessian = )
is used to
compute the hessian with stats::optimHess()
by default. The
variance-covariance matrix is returned in a covariance
slot
in the estimation object, and can be accessed with
get_cov()
.use_posterior(update_omega = TRUE)
update the OMEGA matrix
with the covariance matrix, in order to simulate with uncertainty and
derive confidence intervals.plot(ci = TRUE)
displays
approximate confidence intervals on predicted concentrations. Parameter
uncertainty is approximated with the covariance matrix. Confidence
interval computation relies on the delta approximation
(ci_method = "delta"
), but can also be computed thanks to
simulations (see augment()
documentation).get_cov()
: function to get the covariance matrix of
estimation. #43get_phi()
, read_nmphi()
,
merge_phi()
and plot_phi()
: functions to
compare the estimations vs NONMEM. #55est001
: an example mapbayests
estimation
object. #94update_omega
, update_cov
, and
update_eta
arguments to control what to update..zero_re
default behavior now depends on
update_
arguments values.mapbayest(verbose = )
now mutes the message that
indicates a reset during optimization. #96opt.value
inherited from
optimx
. #95get_data()
can now return a list of individual data
sets with output = "list"
. #64@annotated
tag in model code,
especially for $PARAM
and $CMT
blocks.
#73adm_lines()
and
obs_lines()
don’t need the [ADM] and [OBS] tags in model
code anymore (yet strongly recommended, otherwise it errors
cleanly).testthat
bugs due to upgrade of R and French
translation of warnings.plot()
legend, due to new version of
ggplot2
3.3.4 #82NEWS.md
file to track changes to the
package.NEWS.md