From 15d2ceaf9540696a26b42582b5bfc0773583f002 Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 27 Sep 2024 18:19:19 +0200 Subject: [PATCH] fix --- R/plot.parameters_model.R | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/R/plot.parameters_model.R b/R/plot.parameters_model.R index 99ea3a48e..0197d47a4 100644 --- a/R/plot.parameters_model.R +++ b/R/plot.parameters_model.R @@ -54,7 +54,9 @@ plot.see_parameters_model <- function(x, model_attributes <- attributes(x)[!names(attributes(x)) %in% c("names", "row.names", "class")] # user wants to plot random effects (group levels)? - if (isFALSE(model_attributes$ignore_group) && isTRUE(model_attributes$mixed_model)) { + if (isFALSE(model_attributes$ignore_group) && + isTRUE(model_attributes$mixed_model) && + !"describe_posterior" %in% model_attributes$class) { if (missing(show_intercept)) { show_intercept <- TRUE }