diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2023-04-15 14:43:07 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2023-04-15 14:43:07 +0200 |
commit | 50ea6d11f8c79218c98ee8ae56d8bdcd42cc703a (patch) | |
tree | d154a7abd9cba6be23f617e10d4d1a26da71b7a4 /R/plot.mkinfit.R | |
parent | c705a294113ee74a8d408b8b51e4eb2b2822b3a7 (diff) |
Don't try(mkinpredict), it would still error later
Diffstat (limited to 'R/plot.mkinfit.R')
-rw-r--r-- | R/plot.mkinfit.R | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/R/plot.mkinfit.R b/R/plot.mkinfit.R index 9606507a..9f19213a 100644 --- a/R/plot.mkinfit.R +++ b/R/plot.mkinfit.R @@ -146,9 +146,8 @@ plot.mkinfit <- function(x, fit = x, func = "diffs", initfunc = "initpar", jacfunc = NULL, nout = 0, outnames = NULL) } - out <- try(mkinpredict(fit$mkinmod, odeparms, odeini, outtimes, - solution_type = solution_type, atol = fit$atol, rtol = fit$rtol), - silent = TRUE) + out <- mkinpredict(fit$mkinmod, odeparms, odeini, outtimes, + solution_type = solution_type, atol = fit$atol, rtol = fit$rtol) out <- as.data.frame(out) |