Skip to content

Commit

Permalink
fix ggeffects
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Oct 14, 2024
1 parent 594cb97 commit 316f9ee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions R/methods_ggeffects.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#' @export
model_parameters.ggeffects <- function(model, keep = NULL, drop = NULL, verbose = TRUE, ...) {
ci <- attributes(model)$ci.lvl
## TODO: deprecate later, this is forthcoming in ggeffects 1.8.0
if (is.null(ci)) {
ci <- attributes(model)$ci_level
}
co_terms <- attributes(model)$terms[-1]
focal_term <- attributes(model)$terms[1]
constant_values <- attributes(model)$constant.values
Expand Down

0 comments on commit 316f9ee

Please sign in to comment.