diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-07 09:10:33 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-05-07 09:13:20 +0200 |
commit | 67c8163487e776e9a378c9dfcd39c74f6e6bc507 (patch) | |
tree | c833071ada54cc11798f7cf7b4907e1c1526e545 /R/mkinmod.R | |
parent | 8bdb4cd437a9d4663e542f95869e8692aa38dadb (diff) |
Merge parent solutions to one file
- Combine R/*.solution.R into R/parent_solutions.R
- Create a roxygen family of related functions
- Reduce redundancy by using the inherit tag
- Change the parent.0 argument to parent_0 to match
the corresponding parameter name used in mkinfit
Diffstat (limited to 'R/mkinmod.R')
-rw-r--r-- | R/mkinmod.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/mkinmod.R b/R/mkinmod.R index 099e1155..f52baa4f 100644 --- a/R/mkinmod.R +++ b/R/mkinmod.R @@ -452,7 +452,7 @@ mkinmod <- function(..., use_of_ff = "min", speclist = NULL, quiet = FALSE, verb values <- do.call(parent_func, args = c( - list(t = outtimes, parent.0 = odeini[1]), + list(t = outtimes, parent_0 = odeini[1]), odeparm_list)) out <- data.frame(outtimes, values) names(out) <- c("time", parent_name) |