Skip to content

Commit 7c93746

Browse files
committed
fixes
1 parent 159e61c commit 7c93746

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

R/methods_glmmTMB.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ ci.glmmTMB <- function(x,
426426
method <- tolower(method)
427427
method <- insight::validate_argument(
428428
method,
429-
c("wald", "normal", "ml1", "betwithin", "profile", "uniroot", "robust")
429+
c("wald", "normal", "ml1", "betwithin", "profile", "uniroot", "robust", "residual")
430430
)
431431
component <- insight::validate_argument(
432432
component,

tests/testthat/test-pool_parameters.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ test_that("pooled parameters, glmmTMB, components", {
7474
)
7575
expect_equal(out$Coefficient, c(187.280225, -87.838969), tolerance = 1e-3)
7676

77-
out <- pool_parameters(models, component = "all", effects = "all")
77+
out <- suppressMessages(pool_parameters(models, component = "all", effects = "all"))
7878
expect_named(
7979
out,
8080
c(
@@ -123,7 +123,7 @@ test_that("pooled parameters, glmmTMB, zero-inflated", {
123123
)
124124
})
125125

126-
out <- pool_parameters(models)
126+
out <- pool_parameters(models, ci_method = "residual")
127127
expect_named(
128128
out,
129129
c(

0 commit comments

Comments
 (0)