diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-09-28 16:34:57 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-09-28 16:34:57 +0200 |
commit | 3529f5ff498d7d054c7b1911ddfc4b242902b85d (patch) | |
tree | 4c642bfddcc68e353fe75e8037d39ad8f269d56e /R/mhmkin.R | |
parent | 75f361bed527b91bec205c5452add13247760d61 (diff) |
Fix handling of multistart fits with failures
Diffstat (limited to 'R/mhmkin.R')
-rw-r--r-- | R/mhmkin.R | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -179,7 +179,7 @@ AIC.mhmkin <- function(object, ..., k = 2) { BIC.mhmkin <- function(object, ...) { res <- sapply(object, function(x) { if (inherits(x, "try-error")) return(NA) - else return(BIC(x$so, k = k)) + else return(BIC(x$so)) }) dim(res) <- dim(object) dimnames(res) <- dimnames(object) |