Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Sep 27, 2024
1 parent 06f781c commit 15d2cea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/plot.parameters_model.R
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 15d2cea

Please sign in to comment.