diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-02-22 09:46:39 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-02-22 09:46:39 +0100 |
commit | 39d5dc6988389f026d5165cac208ec63d0645a77 (patch) | |
tree | 9ad604208a70d9ff01fd3e77febbe3a7080dee06 /R/mmkin.R | |
parent | 5181a55b1619c153b690db97ee82698bf76525ff (diff) |
Further adaptations for the logistic model
- Make mmkin compatible
- Return DT50 values corresponding to k0 and kmax
- Turn incompatible parameter names in parms.ini from an error to a
warning, in order to make it possible to use this argument in calls to
mmkin
Diffstat (limited to 'R/mmkin.R')
-rw-r--r-- | R/mmkin.R | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# Copyright (C) 2015 Johannes Ranke +# Copyright (C) 2015,2019 Johannes Ranke # Contact: jranke@uni-bremen.de # The summary function is an adapted and extended version of summary.modFit # from the FME package, v 1.1 by Soetart and Petzoldt, which was in turn @@ -22,7 +22,7 @@ mmkin <- function(models = c("SFO", "FOMC", "DFOP"), datasets, cores = round(detectCores()/2), cluster = NULL, ...) { - parent_models_available = c("SFO", "FOMC", "DFOP", "HS", "SFORB", "IORE") + parent_models_available = c("SFO", "FOMC", "DFOP", "HS", "SFORB", "IORE", "logistic") n.m <- length(models) n.d <- length(datasets) n.fits <- n.m * n.d |