diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-12-07 16:19:54 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-12-07 16:19:54 +0100 |
commit | 904ba9668eb76eaae4960e2188134e8c88da07ee (patch) | |
tree | 31498997575ebcc7544d81a71f991bf127be3a41 /R/parplot.R | |
parent | 97f71fc3d086bd447ab3e4d19abf32bb3114085b (diff) |
Fix parplot for the case of failed multistart runs
Diffstat (limited to 'R/parplot.R')
-rw-r--r-- | R/parplot.R | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/R/parplot.R b/R/parplot.R index 63306ac2..e9c18947 100644 --- a/R/parplot.R +++ b/R/parplot.R @@ -41,7 +41,7 @@ parplot.multistart.saem.mmkin <- function(object, llmin = -Inf, llquant = NA, orig <- attr(object, "orig") orig_parms <- parms(orig) start_degparms <- orig$mean_dp_start - all_parms <- parms(object) + all_parms <- parms(object, exclude_failed = FALSE) if (inherits(object, "multistart.saem.mmkin")) { llfunc <- function(object) { |