Changelog
Source:NEWS.md
mrgsolve 1.6.1
CRAN release: 2025-08-22
- Internal refactor of
self.mevent()andself.mtime()to not send event objects back to mrgsolve when the requested object time is in the past; this preserves previous functionality while respecting change in1.6.0that generates an error for events (or event sequences) that happen or begin in the past (#1297).
mrgsolve 1.6.0
evt::tgrid()was added to theevtoolsplugin, allowing users to insert internal-only (non-output) records into the simulation for monitoring the system at a regular grid of times (#1291).evt::evid()was added to theevtoolsplugin allowing users to reset the event ID attribute of event objects created inside a model (#1291).EVIDbehavior was changed so that event IDs greater than or equal to 100 do not trigger a reset of the ODE solver, functioning like observation records withEVID=0; forEVID < 100, a discontinuity will continue to happen through ODE solver reset (#1291).Event objects created in the model (typically through the
evtoolsplugin) will now trigger an error when the event or event sequence starts before the current simulation time; these events were previously ignored silently (#1291).-
Absolute (
atol) and relative (rtol) tolerances can now be customized for each compartment in an ODE-based model (#1264)- Use
custom_rtol(),custom_atol(), andcustom_tol()to set tolerances on a compartment-by-compartment basis. - Use
reset_rtol(),reset_atol(), orreset_tol()to reset custom tolerances. - Use
use_custom_tol()anduse_scalar_tol()to toggle the model to use either the customized (vector) values or the scalar values. - Use
get_tol()orget_tol_list()to extract both custom and scalar tolerance values. - The model print method has been updated to reflect whether the model is currently set to use the scalar or customized (vector) values.
- Use
mrgsolve 1.5.3
D_CMT,ALAG_CMT, andsimeta()are now available to use in$TABLE($ERROR),$EVENT, and$PREDcode blocks (#1290).Added
END_OF_INFUSIONsyntax, which istrueon the internal record that stops an infusion (#1288).mwrite_yaml()andmwrite_cpp()now render block names in upper case, even for blocks coded with lower case in the original model file (#1282).When creating an
evt::regimenobject (viaevtoolsplugin), the default start time is now the time when the object was created; before this change, the default time was always0(#1266).Added methods for
evt::regimenobjects (viaevtoolsplugin) under the nametime_next(); this either gets or sets the time of the next dose in the regimen (#1266).
Bugs Fixed
Fixed an issue where
timevalues in the simulated output data frame were off by a very small amount, due to issues with floating point mathematical operations (#1287).Fixed a problem writing a model to file with
mwrite_yaml()andmwrite_cpp()when lower case block naming was used (#1282).Fixed a bug where invalid item passed through the
$SETblock caused an error when reading / building a model (#1271).Fixed a bug where mrgsolve was not matching NONMEM behavior when an
EVID=4record was included in the data set withSS=1; mrgsolve will now match NONMEM behavior in this case, with the output being identical toEVID=1withSS=1(#1262).
mrgsolve 1.5.2
CRAN release: 2024-10-18
Add
$EVENTblock for writing code related to dosing or other events that are implemented through model code rather than the data set (#1230).Add
evt::reset()andevt::reset(self)functions under theevtoolsplugin; these reset the compartments in a model; overloaded functions are also provided to reset and dose with bolus or infusion (#1222).Completed dosing functionality in
evtoolsplugin; useevt::addl()to schedule additional doses through anevt::evobject; useevt::ii()to set the dosing interval; useevt::ss()to advance the pharmacokinetic system to steady state just prior to dosing;evt::cmt()sets the compartment number;evt::amt()sets the dose amount;evt::rate()sets the infusion rate; see the user guide for the specific signatures that are available (#1227).Add
evtoolsmodel tomodlib(), illustrating how to implement dosing regimens from inside the model a few different ways (#1230).Added more comprehensive checking for duplicate blocks in a model file; duplicate blocks are always handled when allowed; an error message is always issued when duplicates are not allowed (#1238).
Code to audit
$ODE(or$DES) code, looking for an equation for every model compartment was refactored to use a common approach for both traditional models and models written with thenm-varsplugin; regardless of approach, the user will be warned if mrgsolve does not detect code relevant to every model compartment; the audit system can be bypassed by including the@!auditblock option to$ODE(#1235).The
autodecplugin was lightly refactored to avoid false positive detection of variables declared asdouble; plans are in place to narrow the scope of what is detected for declaration in future releases (#1234).R help files (
.Rd) reviewed and revised for consistency and formatting (#1246).
mrgsolve 1.5.1
CRAN release: 2024-07-26
- Fixed
yaml_to_cpp()example code to prevent saving the file to the working directory (#1220).
mrgsolve 1.5.0
New functions
mwrite_yaml()andmwrite_cpp()can write a model object back to a file, accounting for all updates since the model was read from native mrgsolve format usingmread()(#1190, #1213).New function
mread_yaml()for reading back models written out withmwrite_yaml()(#1190, #1213).New functions in
evtoolsplugin:evt::replace()works likeevt::bolus(), but will replace the amount in a given compartment rather than add to it (#1203).The
nm-varsplugin now exposesDEXP(),LOG10(),COS()andSIN()for use in the mrgsolve C++ code blocks (#1199).An error is now generated when
KAis equal toCL/VCwhile simulating from the one-compartment model with analytical solution invoked through$PKMODEL(#1179, #1197).
Bugs Fixed
- A bug was fixed when certain data frame inputs were passed to
as_data_set()(#1115, #1196).
mrgsolve 1.4.2
An error will now be issued at simulation time when simulation data sets (data and idata) contain non-numeric data in columns sharing names with parameters; non-numeric data in columns with certain reserved names (like
AMT,RATE,II,ADDL, etc.) will also result in an error (#1193).Internal refactoring to improve performance when simulating infusions or doses with lag times when those doses are coded explicitly in the data set (#1186, #1187).
mrgsolve 1.4.1
CRAN release: 2024-02-13
- Fix bug in
evt::regimen.ii(double)where timing of next dose was not as expected (#1170).
mrgsolve 1.4.0
CRAN release: 2024-02-08
evtoolsis a new plugin providing API for dynamic dosing from within the model; functions and classes are in theevtnamespace (#1149).regimenis a new class located in theevtnamespace via theevtoolsplugin;regimenobjects can execute doses in a regular regimen (#1156).mread()andmcode()no longer print a message before the required waiting period on model recompile (#1145).ev_rep()output rownames are cleaned up before returning (#1158).C++ model code blocks (GLOBAL, PREAMBLE, MAIN/PK, ODE/DES, TABLE/ERROR) are now checked for
<object>.<attribute>syntax; if found, symbols on both sides of the dot become reserved words when loading and compiling that model; specifically, an error will be generated if either side of the dot (<object>or<attribute>) is found in parameter names, compartment names, ETA labels, or EPS labels (#1159).ETA values are always simulated from OMEGA, even when the user requests they get scraped from
dataoridataviaetasrcargument tomrgsim(); this ensuresEPSare reproducible for model runs whereetasrc = "omega"(default, ETA are simulated) or, for example, whereetaasrc = "data.all"(scrape ETA from the data set) (#1163).
mrgsolve 1.3.0
CRAN release: 2023-12-04
The
evdataobject for modeled events now contains acheck_uniquemember; when set tofalse, the event will be processed without checking for a matching record in the modeled event log (#1119).The
amtattribute inevdatamodeled event objects is now considered when looking for duplicate records in the modeled event log (#1119).
Bugs Fixed
Fixed a bug where multiple lagged doses given at the same time but with different bioavailability were all given the bioavailability of the last dosing record (#1129, #1130).
Fixed a bug where modeled infusions given
nowwere never turned off (#1131).Fixed a bug where the
selfobject (type:databox) could not be passed into functions written into header files that were included through$INCLUDE; these header files are now included immediately preceding any user code written into$GLOBAL(#1125, #1126).Fixed a bug where modeled event log was not getting reset after simulating the first individual; this resulted in events not getting executed in subsequent individuals when matching events were executed in the first individual; this affects modeled events only, not events coming from the data set (#1117, #1118).
Fixed a bug in detecting which compartments are receiving doses (#1112, #1113).
mrgsolve 1.2.0
- Data set records at the same time within individual will receive different
EPSdraws; this is a change from previous behavior where records with the same time received the same value forEPS(#1110).
mrgsolve 1.1.0
-
Add new functionality for assessing consistency between names on input data set and parameter names (#1078).
- New function
check_data_names()executes the check. - New model specification block
$INPUTfor marking parameters as “inputs” and expecting them to be present in the data whencheck_data_names()is called. - New
$PARAMblock attributes@inputand@tagfor adding tags to parameters which will be checked whencheck_data_names()is called. - New function
param_tags()to list parameters and tags for a given model.
- New function
Now checking
TIMEandtimewhen assessing upper / lower case name consistency of input data sets (#1099).ETAs can now be passed into the problem via
idataby passingeta_srcas eitheridataoridata.alltomrgsim()(#1092).Internal refactor of mechanics checking for user interrupt during simulation (#1088).
Minor re-factor of
mrgsim_nid()and documentation update to be in line with original intent; no meaningful change in functionality (#1086).parameter_listobjects can now be passed toparam()(#1076).ev_rx()syntax gains&operator allowing specification of multiple events at a single time (#1072).Kyle Meyer added as contributor (#1096).
modlib()model1005re-coded to reflect the “traditional” model specification syntax (#1069).The model object
update()method will again issue a warning when unrecognized arguments are passed (#1068).
Bugs Fixed
- Fixed bug where ETA in the first column of
datawas not recognized when usingeta_src = "data"oreta_src = "data.all"(#1095).
mrgsolve 1.0.9
CRAN release: 2023-03-10
- Fix signatures for
compiled.mrgmod()andas_tibble.mrgsims()based on new R-devel check findings (#1065).
mrgsolve 1.0.8
CRAN release: 2023-03-04
SIGMA()is a new model macro which allows users to access on-diagonal elements ofSIGMAin the model (e.g.SIGMA(2)in$ERROR) (#1051, #1052).mrgsim()andmrgsim_q()gain anetasrcargument, allowingETAsto be either simulated fromOMEGA(new default and previously the only behavior) or taken from the input data set (new option), similar to the way parameters can be scraped from the data set (#1037).@etasis a new option for use with the$CAPTUREblock to let users nameETAsto be captured into the simulated output; for example, use@etas 1:lastto capture all modelETAsin the simulated output (#1055).Drop
CXX_STDstatement from Makevars file and DESCRIPTION to be consistent with current changes in R-devel; mrgsolve continues to require compiler capable of implementing C++11 standard, but this should be selected automatically by R (#1060).mrgsolve now depends on
R >= 3.6.2(#1060).
Bugs Fixed
Fix bug when the
pathargument is used in the$NMXMLor$NMEXTblocks; this bug was introduced through the@cppstemfeature in version1.0.7(#1046, #1048).Fix bug in
mread_cache()where theprojectdirectory wasn’t getting rendered properly when passing the complete path to the model specification file (#1056).
mrgsolve 1.0.7
$NMXMLand$NMEXTnow accept therunargument set to"@cppstem"(i.erun = "@cppstem"); in this case, the stem of the NONMEM run will be assumed to be the same as the stem of the mrgsolve model file (#1025).Missing values (
NA) in input data sets will be replaced with 0 for the following columns:AMT,CMT,EVID,II,ADDL,RATE,SSas well as their lower case counterparts (#1030).Refactored include order when building a model; this is an internal update and not expected to be visible to the user (#1038).
Bugs Fixed
- Fix bug in generating certain model definitions when using the
nm-varsplugin; the bug would have resulted in a warning from the pre-processor and did not affect function of the model (#1039).
mrgsolve 1.0.6
CRAN release: 2022-08-29
Bugs Fixed
- Fix bug in
TOUCH_FUNSwhere parameter and compartment lists were not getting generated properly whenmrgsolvewas not loaded; bug was detected and fixed prior to upload to CRAN or MPN (#1013).
mrgsolve 1.0.5
Changed behavior for dosing records where EVID = 4 and SS != 0 to match what is done by NONMEM: the system will be advanced to steady-state but will not be reset; behavior prior to 1.0.5 release was to advance to steady-state and then reset (#1011).
Any column in an input data set that has a class attribute will now be dropped in addition to non-numeric columns; this includes columns that are
integer64which can be present in data frames derived fromdata.table::fread()or other.csvreaders (#1008).The
$MAINand$TABLEblocks will no longer get called for actual dose administration records with lag times; this could change time after dose calculations or other calculations that could be happening in those blocks when the actual administration is taking place (#992).Code to update the parameter list was re-factored to be much more efficient (#978).
Bugs Fixed
Fix bug where apparent dosing events for additional doses with lag times were not getting scheduled (only records for the actual administration); this doesn’t change the simulated output but could change time after dose calculation (#992).
Fix bug where special
nm-varsvariables were not getting recognized as valid capture items during dynamic capture (#987).Fix bug when updating the parameter list with a data frame that included non-numeric columns that were not parameters (#978).
mrgsolve 1.0.4
CRAN release: 2022-05-16
Fix bug where
as_data_frame()was not properly working when leading event object wasevdtype (#948, #955).Add
uctran()to convert nmtran data names to upper case (#955).Both
lctran()anductran()are generic and work ondata.frameor event (ev) objects (#949, #955).Fix bug where data records with
EVID = 3were getting shifted in time byALAG(#964, #969).Small negative eigenvalues from
OMEGAorSIGMAare set to zero in multivariate normal simulation ofETAandEPS, following the pattern seen inMASS::mvrnorm()(#956, #957).Fixed bug where template parameters (
T) were getting modified whennm-varsplugin was used in conjunction withmrgxplugin (#965, #968).
mrgsolve 1.0.3
CRAN release: 2022-03-21
- Removed
assert()statement in LSODA code found by CRAN check (#943).
mrgsolve 1.0.2
CRAN release: 2022-03-17
- Test class using
inherits()notclass()from CRAN check (#943).
mrgsolve 1.0.1
Add
LOG(),EXP(),SQRT()macros whennm-varsplugin is invoked (#931, #936).Use
evd()to create an event object which renders nmtran names in upper case (e.g.TIMErather thantime) (#935, #919).Fixed bug where
ratewas not getting set for modeled events (#934).Fixed bug where
self.stop_id()andself.stop_id_cf()had reversed behavior as documented (#927, #928).Refactored EVID=3 behavior to leave
NEWINDas-is (#934).
mrgsolve 1.0.0
CRAN release: 2022-01-20
New model syntax:
THETA(n)is interpreted asTHETAnin the model code;THETAis now a reserved word (#837, #891, #892).New functions
collapse_omega(),collapse_sigma()andcollapse_matrix()added which help to reshape OMEGA and SIGMA matrix objects with multiple blocks (#897, #900).New plugin
nm-varswhich implements NONMEM-like syntax for referring to compartments, differential equations, bioavailability factor, infusion duration and rate, and lag time (#904, #891).New plugin
autodecwhich will find user-defined variables in the model code and automatically declare them as typedouble(#905, #893).Use
iias spacer for setting the between-dose interval when putting event objects in a sequence (c.f.wait) (#906, #901).Start deprecating
simeta(n)andsimeps(n), calls tosimeta()orsimeps()with an integer argument thus limiting the update to just a singleETA(n)orEPS(n); use in model code will generate warning when loading the model that contains theninteger value (#908, #909).
mrgsolve 0.11.2
In
pk2iv, change scaling volume forCENTfromV2(incorrect) toV1(#831, #832, #833)Fix bug collating multiple
$OMEGAor$SIGMAmatrices when parsing a model (#863)Refactor how debugging information is processed when using the
recoverargument tomread()(#853)Fix typo in documentation for
as_cmat(); the off-diagonals are assumed to contain correlations (#856)Wrote a
as.data.frame.matrix()function in Rcpp; all simulation results return from the C++ simulation code as a data frame (#857)Fix bug where dynamic capture (via
mread()) was not allowed for variables declared in$GLOBAL(#868)
mrgsolve 0.11.1
CRAN release: 2021-05-10
-
mrgsim()will now periodically check for user interrupt signal so that long-running simulations can be stopped usingEscand / orControl-C; the check interval can be modified through theinterruptargument tomrgsim(), but for most applications, this shouldn’t need to be changed (#823) -
mrgsim()will issue a warning if duplicate columns are found in simulated output and rename duplicates usingmake.names(); thanks @FelicienLL for the report (#827, #828) - Users can now turn compartments to
OFFwhen they have active infusions running; this was previously an error (#822)
mrgsolve 0.11.0
CRAN release: 2021-03-28
- The absolute paths to nonmem output files (
root.xmlorroot.ext) are now saved in the model object when nonmem results are imported via$NMEXTor$NMXML; paths are accessible by coercing the model object withas.list()and looking at thenm_importitem (#802) - Add Tim Waterhouse as contributor (#809)
- Add
rootargument to$NMEXTand$NMXMLso that the nonmem output files are located relative to theworkingdirectory (default, previous behavior) or the directory where thecppfileis stored;cppfilewill eventually replaceworkingas the default (#803) - Models based on
$PREDnow respect theobsonlyoption (#811)
mrgsolve 0.10.9
- Dosing into a compartment that is off at the time of the dose turns the compartment back on regardless of whether bioavailability is zero or non-zero (this is a bug fix where the compartment was not turned on when bioavailability was zero). (#800)
-
simeta()andsimeps()now accept an (optional) integer argument to limit re-simulation to single ETA or EPS values (#789) -
as.list(mod)output now includes a data frame ofC++variables and pre-processor definitions in thecpp_variablesslot. (#780) -
$PARAM,$THETA,$CMT,$INIT,$OMEGAand$SIGMAblocks all include the directives@objectand@as_objectso that block contents can be specified programmatically.@objectnames an object that was coded into$ENVand@as_objectindicates that the block contains code to realize the object. See?BLOCK_PARSEhelp topic for more information on how this all works. (#783) -
$NMEXTnow lets the user select between multiple tables for scraping parameter estimates. (#782)
mrgsolve 0.10.6
- Fix url endings for check on r-devel
- Adjust test comparing lattice plots based on change in r-devel; passing check.environments now
mrgsolve 0.10.5
- Suppress warnings when non-numeric columns are dropped when those columns are not relevant to the simulation (#709)
- Add
$ERRORas an alias for$TABLEin the model file (#710) - Fix bug where warning messages during steady-state finding referenced
rtolandatolrather thanss_rtolandss_atol(#703) - Fix annotation parsing bug when the description included semi-colon (#696)
-
loadsoissues a proper error when the model dll doesn’t exist (#724) - Try loading the model with loadso once of the model isn’t loaded at the time of simulation (#725)
- Throw an error when
addlorssare negative (#733) - Internal refactoring so that there is a hard solver reset when parameters that are copied from data change (#744)
- Add
tadplugin to calculate time after dose in a specific compartment (#702) - Internal refactor
carry_outto respect defaultnocbbehavior (#759; see also #744) - Throw an error when matlist labels are duplicated (#730)
- Add
captureargument tomreadto add to$CAPTUREwhen compiling the model (#704)
mrgsolve 0.10.3
- The simulation time grid was adjusted so that rendering the grid could result in no times (length 0 vector of times); this is a breaking change from previous behavior where the time grid resolved to 0 when there were no observations to be found. While this is a breaking change, the old behavior was almost always wrong when the desired output was a series of non-observation records (#640)
- Added 1005 model
- Added
recovermechanism to join items in input data sets to the output (#646) - Allow simulation from empty time grid; this would potentially break some existing code; but not common (#648)
- Add collapse_omega and collapse_sigma arguments to [ set ] block (#651)
- Add separate tolerances (
ss_rtolandss_atol) to control advance to steady state (#652) - Fix bug in
realize_addlwhenaddlis zero byiiis not (#653) - Fix bug where system did not reset with EVID 4 and infusion dose (#683)
- NMXML will now take vector for
tnameto add custom names to imported THETAs (#687) - Add NMEXT block that works similar (not identical) to NMXML, but reads from the
run.extfile (#509)
mrgsolve 0.10.1
CRAN release: 2020-02-21
- Add
select_simsmethod for selecting columns inmrgsimsobject (#585) - Fix bug where system was improperly advanced on steady state dosing record with a lag time when the system failed to reach steady state (#596)
- Add better compartment level control for advancing system to steady state (#598)
- Allow user to set
CXX_FLAGSin$ENVblock (#603) - Add
N_CMTplugin so that the number (index) of every compartment is available by name (e.g.N_CENTfor the number index of the central compartment) (#606) - Fix bug where
blocks()failed when the model was defined inRmdfile (#608) - Call ODE block every time the system tries to advance so that variables calculated in ODE are properly calculated in output (#613)
- Add
withinmethod for mrgmod (#616) - Access initial compartment values and other model object items with
$operator formrgmod(#620) - Add plot method for signature
c("mrgsims", "character"); pass in a character vector of outputs to plot (#630) - The house model, previously accessible by
mrgsolve:::house()is now an exported function (#625) - Exporting outvars function to extract names of current output variables from the model object
- Now importing lifecycle and glue packages
mrgsolve 0.10.0
CRAN release: 2019-10-15
- Remove
qsimand all associated functions - Export new function / workflow as
qsimas a simpler, quicker simulation routine (#490) - tad calculation (when called through
mrgsim()and variants) recognizes evid 4 in addition to evid 1 (#502) - Fix bug where
$NMXMLfails whennmnamespace not found in xml file (#510) - Arguments to
evconstructor are now evaluated; for example,ev(amt = 100, rate = amt/2)(#512) - Add
$and[[operators for event objects (#513) - Recalculate rate (from tinf), addl (from total or until) upon mutate (#513)
- Standardize column order for event objects (#513)
-
mrgsim_eandmrgsim_eiwill try to accept data frame and validated data sets - Drop ODEPACK solver and implement lsoda in C++ (#504)
- Add C++11 as system requirement
- Add constant infusion at steady state (#249)
- Add
outvarsargument to update method; this will replaceReq - Add two arguments to mrgsim:
ss_nandss_fixedto control advance to steady state; a warning will be issued whenss_fixedisFALSEand the system doesn’t reach steady state withinss_niterations (#533) - An error is issued when the first argument to mrgsim and variants is not a model object (#547)
- Argument
xpathis added tonmxml()to handle cases where thenmnamespace is not found in the xml file (#510) - More informative error messages are included when processing input data sets (#534)
- When there is a problem when the ODE system is advanced, informative error messages from both lsoda and mrgsolve will be issued along with the value of
istate(#457) - Add ability to have
ss=1in a dosing record with bioavailability is zero (#497) - Error messages will be issued when both of the following are found in input for event object construction:
rate/tinf,addl/total,addl/until(#513) - When
tinfis used to create event object, that item is retained and used to set the infusion rate (along with dose) until it is removed; it is an error to try to setratewhentinfis in the event object (#513) - Fix bug related to column identification in
expand_observations(#563) - Add record position argument to
expand_observationsto allow control record sort order (#565)
mrgsolve 0.9.2
CRAN release: 2019-07-13
- Fix bug where system advanced to next time after advancing to steady state on a dosing record with ss=1 with no observation record at the same time but preceding the dosing record (#484)
- Add AMT and CMT macros for self.amt and self.cmt, respectively (#354)
- Re-organize
DLSODAcode to avoid CRAN LTO warning
mrgsolve 0.9.1
CRAN release: 2019-06-14
- Fix bug in TAD plugin where time of last dose never moved from default
- Add option in
mrgsolve_qto call the standard mrgsolve simulation rather than the streamlined function; a decision will have to be made about whether or not the streamlined function will be retained - Fix bug in the model parser where commented lines with (all) leading spaces were not handled properly (#450)
- Objects of class
valid_data_setnow retain the matrix attribute (#448) - Block names are now coerced to upper case letters
- Change default for
simcallto 0 in mrgsim_q - Add recover argument to mread
- Add
@as_objectoption to the following blocks: PARAM, INIT, CMT, OMEGA, SIGMA; experimental - Allow multiple
ODEblocks - Add
mtimefunction toselfobject for simpler mtime implementation - Add
@paramblock option for ODE blocks; use comma-separated name=value pairs to add to the parameter list from within ODE - Remove BLAS code embedded in ODEPACK fortran files per CRAN request
mrgsolve 0.9.0
CRAN release: 2019-01-23
- Added
logyandlogbrarguments toplot.mrgsimsso results y-axis outputs can easily be plotted on log scale - release
mrgsolve 0.8.12.9000
New functions
- Added
numerics_onlyfunction to drop non-numeric columns from the input data set after optionally converting logical columns to integer - Added
ev_rxfunction to write dosing interventions in notation similar to a prescription ‘sig’
New features
- Added
$PREDblock for models that don’t utilize any compartments - Added
pred1to the internal model library (modlib()) - Added
mrgsim_qfunction for simulation from a model object with quicker turnaround time -
mreadwill takesolocandprojectarguments fromoptions()asmrgsolve.solocandmrgsolve.project, respectively - Added
outputargument tomrgsimso that e.g. data.frame can be returned, without creating the usualmrgsimsobject - The directory name passed to the
solocargument ofmread(ormcodeor cache versions of both) will be created if it doesn’t exist - Added
pk2ivmodel as convenience option - Added
tinfargument toev()constructor function
New behavior
-
time/TIMEis no longer required in a data set when$PREDis in use -
cmt/CMTis no longer required in a data set; a default value of 0 will be assigned in case it is missing and an error will continue to be generated when dosing into an invalid compartment (0 is always an invalid index for dosing compartment) - An error will be generated if missing values (
NA) are detected in an input data set with the following names:ID,time/TIME, or any column that shares a name with an item in the parameter list - An
indexargument was added to the$NMXMLblock to allow results selection when multiple estimation blocks were used. The new default is to use the last result. -
modlibis now able to function as a wrapper tomreadfor models in the model library so that, for example,modlib("pk1")is equivalent tomread("pk1", modlib()).
Bugs fixed
- Fixed bug related to record sort order (#406)
mrgsolve 0.8.11
CRAN release: 2018-04-26
- Internal release
- Removed the function
sand replaced withs_; this was not a problem created by mrgsolve but rather by ggplot2, which callsmgcv::sviageom_smoothunder certain circumstances
mrgsolve 0.8.10.9015
- Re-configured the list of data coming from
as.list.mrgmodso that the names match the names that you would pass toupdate.mrgmod; also added some items so that all updatable slots in the model object are exported by callingas.list(#354)
mrgsolve 0.8.10.9014
- Add OMEGA and SIGMA matrices to
as.list.mrgmodoutput under the names omat and smat, respectively - It is no longer an error to attempt to update slots for OMEGA and SIGMA matrices when there is no matrices in the slot as long as the update is with an empty list or a matrix with zero rows
- Fix segmentation fault when both data set and idata set are used in a simulation with certain mis-matches in the ID content between the two (#352)
mrgsolve 0.8.10.9012
- Use
dplyr::filter_forfilter_.ev
mrgsolve 0.8.10.9009
- Added
mutate_simsandfilter_simsthat work onmrgsims(output) objects, modifying thedataslot and returning a modifiedmrgsimsobject rather thandata.frame - Added
plot_simsfunction that takes a data frame of simulated output and generates a plot using themrgsimsmethod
mrgsolve 0.8.10.9008
- Changed
idargument toIDinev_repandev_seq; a warning is issued ifidis used - Added
data_qsimfor creating input data sets to use withqsim - Fixed a bug where time after dose was not correctly calculated for additional doses with a lag time #327
- Added
read_nmextto read in nonmem model output from the .ext file
mrgsolve 0.8.10.9005
New Features
- Added better support for writing model files with any extension. For example,
mread("mymodel.txt")will read from the filemymodel.txtif it exists. However, the default behavior remains unchanged so thatmread("mymodel")will expect to find the model in the filemymodel.cpp.
Bug Fixes
- Fixed bug where the MD5 value on the model file could not be calculated under certain
projectpath formulations #315
Important changes
The
realize_addlfunction was re-factored to better account for time-varying data items; more option are provided for seeing where rows were inserted into the data set and whether to make assumptions about other data in those rows or notmrgsolve no longer utilizes any functions from the XML package. All previous functionality that depended on XML now depends on xml2. As such, xml2 is listed under the Suggests dependency.
When using
$NMXML, the$OMEGAand$SIGMAmatrices are now loaded by default; see new default arguments tomrgsolve:::nmxml
mrgsolve 0.8.10.9003
New Features
Bioavailability specified in
$MAINis accounted for when simulating withqsim; there is still no bioavailability adjustment for infusions or lag times adjustments to dosesAdded capability to rename data items in
$CAPTURE; also, names are partially sanitized, removing parens and brackets.
For example$CAPTURE WT = WGT ETA(1) TVCL = THETA1Added
qsim_dffunction, returning data frame rather than matrixAdded
as.listmethod formrgsimsobjectsAdded
deepargument foras.listmethod formrgmodobject; it was taking a lot of time to return the function set, so now you only get it ifdeep = TRUEAdded
mrgsimvariant functions with explicit input requirements written into the function name. For example, callmrgsim_eto simulate from an event object,mrgsim_dto simulate from a data frame. All of these functions are called bymrgsim.Added method so that event objects can be passed to
data_set; also, coercing event objects todata_setwhen passed in asdataAdded
all.equal.mrgmodfunction to compare two model objects. The function returns logical (only)Added
env_get_envthat always just returns the model environment; it has identical result asenv_get(mod, tolist = FALSE)Change
mread_cacheandmcode_cacheso that the cache is invalidated whenprecleanargument isTRUE
Functions removed
-
mrgsolve_exampleandmrgsolve_template; these had been deprecated previously with warning; usemodlib()models instead
mrgsolve 0.8.10.9001
- The model environment is automatically imported as
_envwhenmrgxplugin is invoked
mrgsolve 0.8.9.9004
Added
fileargument tomreadto allow coding model specification files with any extension. The current behavior continues to be assuming that the model is in a.cppfile, but using thefileargument allows any file name for model specification.Added
nocbargument tomrgsim. IfnobcisTRUE(default),mrgsimcontinues to use next observation carried forward to advance the system when there are time-varying parameters (including covariates). IfnocbisFALSE,mrgsimwill use last observation carried forward (locf) to advance the system when there are time-varying parameters.
mrgsolve 0.8.9.9002
Bug Fix
- Fixed bug where deslist was created in the wrong order
- Fixed bug where infusion duration was incorrect when paired with non-zero lag time (test added)
- Fixed bug where
selfobject was not correctly updated for the first record for an individual (#273)
Important changes
- Add support for dosing records with both lag time and ss flag; an error message will be generated if lag time is greater than ii or if lag time + infusion duration is greater than ii.
- The behavior of
ev_assignis changed so that the unique values ofevgroupare sorted prior to making event assignments. Details about the new behavior are now included in the R help topic.
mrgsolve 0.8.6.9000
Important changes
- The bioavailability parameter now gets updated with each and every dose, regardless of whether it was explicitly coded in the data set or implicitly via
addl. The previous behavior had bioavailability parameter locked at the value at the time the initiating dose was implemented - Updated package dependency requirements. Notably, mrgsolve now requires
Rcpp >= 0.12.12anddplyr >= 0.7.1
New Features
- Dosing records with
ss=2are recognized, allowing combining of steady-state dosing regimens under linear kinetics (e.g. 10 mg QAM and 20 mg QPM) (#221) - Added function (
inventory) that reconciles model parameters with names in an object (e.g. a simulation data set) verify that required parameters can be found in the data object.
mrgsolve 0.7.7
New Features
- Added automatic, on-demand output of time-after-dose (
tad) in the simulated output. Usemrgsim(tad=TRUE). - Several new functions added to
$PLUGIN mrgx, includingmrgx::get<T>for getting objects out of$ENVor a package namespace andmrgx::mt_fun()that is just a function that you can assign when declaringRcpp::Function. - Added
objectargument toidata_setanddata_setto get adata.frame(or function to call that returnsdata.frame) out of$ENVto use for simulation.
Changes / additions
- Added
cmtargument to$PKMODEL. Whencmtis set to a character vector or a comma-separated string,$PKMODELinfers the number of compartments and declares them in the model. This means a separate$CMTblock is not required when using$PKMODEL. - Added
colsargument toas_bmatandas_dmatso that a character vector of names can be specified (rather than regular expression) to select data for creating matrix. - The
precleanargument now causesunlinkto be called on the model build directory. - Added several functions to help work with
$ENV:ls_env,get_env,re_eval_env,update_env. - When a dose is administered into a compartment that is off, the compartment is now turned on and the dosing is allowed to proceed. This is a change from previous behavior, where an error was generated.
mrgsolve 0.7.6
Important changes
- The
table()macro in$TABLEis now deprecated (#129). To get derived values into the simulated output, users should assign to typedoubleand list that variable name in$CAPTURE. See also thecapturetypedef introduced below. - The
mrgxplugin was completely removed. - Parameter updates via
parammethod with signaturemissingwill check names of input parameters against names of existing parameters. An error is generated if a user attempts to update a parameter that doesn’t exist. Note that this does not apply for theparammethod with signaturelist(#144). - The git repository was re-organized so that the package lives in the base directory (#171).
Features
- Added
@macros for indicating block options in model specification file. - Added
qsimfunction for quick(er) simulation runs with just one parameter set. - Added
recmatrixthat creates matrix simulation template forqsim. - Added
mrgsolve:::renderto create a document with overview of model contents. Methods for bothmrgmodobjects andcharacterstrings pointing to a model file. - Use
mrgsolve:::detailsto extract model annotation. - Added
capturetypedef in the model specification file. Variables that are typecaptureare doubles and are automatically appended to$CAPTURE.
Thecapturetypedef is not allowed in$ODEand probably should be reserved for$TABLE. -
simetais available in$MAINandsimepsis available in$TABLEby default, no$PLUGINis required. - Better support for including
Robjects in the model via$ENV(#158). - Added
assign_evfunction to help build simulation data sets from event objects (#164). - Added
as_data_framemethod from thetibblepackage (#166). - When annotating model blocks, mrgsolve takes the last parens item as the “units” and the last bracketed item as “options”
- Added
$operator formrgmodobjects to return the value of a parameter. - Added
mread_cacheandmcode_cachefunctions to build and cache a model (#143).
Bugs fixed
- Fixed documentation issue in
PKMODEL. The volumes for two-compartment model with no depot should beV1/V2. - Fixed bug in
knobswhere output column names are malformed when a user$CAPTUREs a parameter that is also being tweaked as a knob. - Fixed bug in annotated model specification when multiple unit or option specifications are made.
Under the hood
- User-declared
double/int/boolin$MAIN,$ODE,$TABLEare kept in unnamed namespace and are local to the file. - Started to re-organize the
.Rfiles. -
mrgsolve:::detailsreturns a data frame of information regardless of whether the model was annotated or not (#165). -
mrgsolve::detailshas additional arguments to help control output. - Removed
pkeventclass; all records aredatarecord.
mrgsolve 0.7.5
Features
- Added annotated code blocks for
$PARAM,$FIXED,$THETA,$CMT,$INIT, and$VCMT. (#107) -
mrgsolve:::house()model re-coded as an annotated model. - Re-implemented
$ENVto allow users to createRobjects that can be used at certain points when parsing the model. (#115) - Added
>>signifier to code blocks that allow options;>>at the beginning of the line indicates that thename=valuestatements that follow are to be parsed as block options. - Added
objectargument for the following blocks:$PARAM,$OMEGA,$SIGMA,$FIXED,$CMT. Whenobjectis set to a character string naming an object in$ENV, that object will be used to form the output from the block.
Bugs fixed
- Fixed a bug which caused simulation run to hang when implementing a dose with a very small lag time. (#109)
- Fixed a bug where
valid.numericlistwasn’t returningFALSEfor improperly-formed objects.
mrgsolve 0.7.4
- The
modmrgpackage was discontinued. All of the pre-coded models are now available in mrgsolve. Simply callmreadwith the model stem (e.g.pk1cmt,irm3, etc …) and callmodlib()as theprojectargument.
For example:mod <- mread("emax", modlib())will compile theemaxmodel and return the model object.
mrgsolve 0.7.2
- Addressed an issue where model compilation on
Windowssystems failed when certain symbol names were used in the model (#97). In this release, adllname-win.deffile is created insolocto export only the functions that mrgsolve needs to use. This is only relevant toWindowsplatform. - Added a check on the
projectargument tomread: if newline(s) are found, an error is generated and the user is prompted to usemcodeinstead. - Several changes under the hood (#99)
mrgsolve 0.7.1
- Fixed bug where requested columns were not properly named in certain circumstances (#86).
mrgsolve 0.7.0
- Revert back to previous behavior where
cwdtosolocis not required to build the model. This was only required onWindowssystems where there was a space in the file name. Correctly rendering the path for the build directory now.
mrgsolve 0.6.1
Features
- Added
as_data_setto convert one or more event objects into a data frame that can be passed todata_set. Does something similar toexpand.ev, but more control. - For special column names (
time,amt,rate,evid,ii,addl,ss,cmt) either lower case or upper case names are recognized. The determination is made on thetime/TIMEcolumn (always required when using a data set). Iftimemrgsolve will continue looking for lower case names; ifTIMEit will look for upper case names. A warning is issued in case both upper and lower case names are included. - Added
$PLUGINto let users extend their model specification file. Valid plugins includesimeta,Rcpp,RcppArmadillo, andBH. When a plugin is used, mrgsolve will link back the the appropriate package and possibly include appropriate header files when compiling the model. For example,simetawill link back to mrgsolve andRcppArmadilloand allow the modeler to simulate a new set ofETAs. UseRcppplugin to simulate random variates from common distributions inR(e.g.rnorm,rexpetc … ).
Important changes
- When using
$PKMODELwithncmt=2anddepot=FALSE, the default PK parameters areCL,V1(central volume),Q,V2(peripheral volume).
This is a change where the previous volumes wereV2(central) andV3(peripheral). -
$CAPTUREnow saves output items to slots instd::vector<double>, rather thanstd::map<std::string,double>. We’ve known for a while that thestd::mapwasn’t very efficient especially with large simulations.
Currently, items in$TABLEare still saved intostd::mapwithtable()macro. The plan going forward is to eliminate thattablemapand force output variables into$CAPTURE. - Due to major changes to
dplyr, now requiringdplyr >= 0.5.0(#69) - The
dataslot inmrgsimsobjects is nowdata.frame - The
knobsfunction andplotmethod has been re-written. Overall behavior for most applications should be the same.
Under the hood
-
C++symbols for model functions are now stored in the model object (funsslot) - The status of the model object (function names and compile status) can be checked with
mrgsolve:::funset(mod) - A model is considered to be loaded and ready to go if all functions in
funscan be found withis.loaded - Model shared objects are still stored within the
solocdirectory (by defaulttempdir()), but mrgsolve will create a subdirectory structure to organize compilation artifacts. The outer directory is keyed based on the current mrgsolve version number and the computer platform. Inner directories are based on the model name (model(mod)). - A source file is created based on the
modelname and the shared object is created based on that name. If the compilation is successful, the shared object (.soon mac/unix,.dllon Windows) is copied to a.soor.dllfile with a unique stem (e.g.model2lj239wsfo.so). This unique shared object is loaded into theRprocess for use with the model. - Every time the model is rebuilt, the build directory is scanned for shared object files. Excluding the main model shared object (unchanging name based on the model), old shared object files are deleted and, if currently loaded (
getLoadedDLLs()), are attempted to bedyn.unloaded. - Upon model rebuild (via
mreadormcode), if there are no changes to the source.cppfile, the source is not overwritten. In that case,makewill not re-build the shared object. Using theprecleanargument will force re-compilation (seeR CMD SHLIB). - The header files
modelheader.handmrgsolv.hare no longer copied into the project directory. ButCLINK_CPPFLAGSenvironment variable is modified to include<path-to-mrgsolve-package>/inst/baseso that these may be linked. - The
R CMD SHLIBbuild process always usesintern=TRUEso that output is suppressed on bothWindowsandmac/unix. The user may still request to view build output with theignore.stdoutargument. - Model build always links-to the
projectdirectory to look forC++header files. When including a header file that may change from build to build, always run withpreclean=TRUE. - mrgsolve now changes the working directory prior to building a model.
The working directory is restored on exit frommread.
mrgsolve 0.6.0
Bugs fixed
- Fixed a bug when an infusion was attempted with
rate > 0andamt==0.
Additionally, an error is generated when an infusion is attempted with zeroamt(#43).
mrgsolve 0.5.12
New features
- Added
mcodefunction as alternative to usingmreadwhen your model is written in anRstring. Note the order of the arguments: firstmodel, thencode, thenproject.projectdefaults totempdir.
So the call is:mod <- mcode("mymodel", code). The equivalentmreadcall is:mod <- mread("mymodel", tempdir(),code). -
carry.out()andReq()now takenewname = oldnameas input. Use this syntax incarry.outwhen you want to copy a column from the input data set into the simulated data set, changing the column tonewnamefromoldname.
Use this syntax inReqwhen you want to change the names of compartments or output variables specified in$TABLE/$CAPTURE. - Added
pkmodelfunction for easy loading and simulating from 1- and 2-compartment models (#39). - Added new code block:
$PKMODELfor simulating PK model with analytical solutions. The main option for this block isncmt, which picks the number of compartments for the pk model. See?PKMODELfor more information and other options (#34).
Under the hood
- Added
codeattribute tomrgmodobjects. The actual source code stays with the model object.seewas modified to look atx@codefirst when showing the model code. - Added a tokenizer function (
get_tokens), a wrapper for the boost tokenizer) to help checking the model specification file. - Data items entered in
$FIXEDare now implemented as C++ preprocessor directives by default rather thanconst doublevariables. Use$SET fixed_type = "define"or$SET fixed_type = "const"to select between the approaches.
mrgsolve 0.5.11
Bugs fixed
- Added missing example model specification files (popExample, viralExample, others)
- Added
mindtattribute tomrgmodobjects with default value of.Machine$double.eps*10. When the problem includes an infusion, the calculated end of the infusion may come too close to another record. Usually the solver will fail with the messageDLSODA- TOUT(=R1) too close to T(=R2) to start integration.. To fix this, setmindtto be greater than zero but small … maybe 1E-12. Whenmindtis greater than zero andtto - tfrom(the times of two adjacent records) is less thanmindt, mrgsolve will setttoequal totfrom(#9). -
zero.redidn’t properly update the$SIGMAlist when one matrix was named and another was unnamed. This has been fixed. (#16) - Fixed a bug where infusions with
ss=1 caused mrgsolve/Rto crash when the infusion duration was equal to or some multiple of the dosing interval. (#19) - Fixed a bug where setting
F_CENTto zero gave undefined behavior.
mrgsolve will issue an error ifF_CMTis set to zero and thessflag is set to 1. (#22) - Fixed bug where dosing records with
evid=4(reset the system and dose)
andaddl > 0reset the system for all subsequent doses. Additional doses coming from records withevid=4will not do system reset. (#23)
Important changes
- New arguments for
$NMXML(see?nmxml) that are easier to understand and consistent with new prefixes and labels forETAandEPS.nameargument is removed. Usetname(to provide a prefix forTHETAs),oname(to name theOMEGAmatrix), andsname(to name theSIGMAmatrix) instead. In general, setthetato beTRUEto importTHETAs, setomegato beTRUEto importOMEGA, and setsigmato beTRUEto importSIGMA.
Specifying character namestname,oname, andsnamewill implytheta=TRUE,omega=TRUE, andsigma=TRUE, respectively.
New features
- New aliases available for setting bioavailability, lag time and infusion duration and rate. For a compartment called
DEPOTuse:F_DEPOT(bioavailability),ALAG_DEPOT(dosing lag time),D_DEPOT(infusion duration), and / orR_DEPOT(infusion rate). (#13) - Added slightly more informative messages when
DLSODAfails, including clear identification if the value ofistate, which is 2 when the solver succeeds and negative when the solver fails. - Added
labelsandprefixoptions to$OMEGAand$SIGMA. These allow descriptive aliases for ETAs … e.g. usingETA_CLrather thanETA(1).
(#15) - Added
dplyr::slicemethod formrgsimsobjects (#11) - New argument to
mread:quiet. SettingquiettoTRUEwill prevent printing messages whenmreadis called. The default isgetOptions("mrgsolve_mread_quiet",FALSE)… so you can calloptions(mrgsolve_mread_quiet = TRUE)to globally turn off messages frommread.