aboutsummaryrefslogtreecommitdiff
path: root/R/lrtest.mkinfit.R
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2020-11-12 16:41:10 +0100
committerJohannes Ranke <jranke@uni-bremen.de>2020-11-12 16:45:53 +0100
commitf6fc5a050442c60d74a1943fa1181b8338322f30 (patch)
tree9a3ff864fc535dc2d5d45791ab7a4189c4087e92 /R/lrtest.mkinfit.R
parentabe4ba27295389374f3ee53be0638275bd958743 (diff)
Model names in lrtest.mmkin, fix for print.mmkin
Fix the display of warnings and errors in print.mmkin, the matrix was erroneously transposed.
Diffstat (limited to 'R/lrtest.mkinfit.R')
-rw-r--r--R/lrtest.mkinfit.R2
1 files changed, 2 insertions, 0 deletions
diff --git a/R/lrtest.mkinfit.R b/R/lrtest.mkinfit.R
index c3f4d38e..cf07154c 100644
--- a/R/lrtest.mkinfit.R
+++ b/R/lrtest.mkinfit.R
@@ -74,5 +74,7 @@ lrtest.mkinfit <- function(object, object_2 = NULL, ...) {
#' @export
lrtest.mmkin <- function(object, ...) {
if (nrow(object) != 2 | ncol(object) > 1) stop("Only works for a column containing two mkinfit objects")
+ object[[1, 1]]$mkinmod$name <- rownames(object)[1]
+ object[[2, 1]]$mkinmod$name <- rownames(object)[2]
lrtest(object[[1, 1]], object[[2, 1]])
}

Contact - Imprint