Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Mar 13, 2024
1 parent ecebb74 commit e98cf33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/get_parameters_mixed.R
Original file line number Diff line number Diff line change
Expand Up @@ -535,16 +535,16 @@ get_parameters.hglm <- function(x,
re <- x$ranef

f <- find_formula(x)
if (!is.null(f$dispersion)) {
if (is.null(f$dispersion)) {
dispersion <- NULL
} else {
disp <- summary(x)$SummVC1
dispersion <- data.frame(
Parameter = rownames(disp),
Estimate = as.vector(disp[, 1]),
Component = "dispersion",
stringsAsFactors = FALSE
)
} else {
dispersion <- NULL
}

fixed <- data.frame(
Expand Down
1 change: 1 addition & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Nakagawa
Newburgh
ORCID
PIs
PROreg
Rhat
ROPEs
RStudio
Expand Down

0 comments on commit e98cf33

Please sign in to comment.