Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Mar 6, 2023
1 parent b2b09b0 commit 26113f4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions R/methods_hglm.R
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,15 @@ p_value.hglm <- function(model,
method = NULL,
verbose = TRUE,
...) {
p_value.default(
dots <- list(...)
dots$component <- NULL
args <- list(
model,
dof = dof,
method = method,
component = "conditional",
verbose = verbose,
...
method = method,
verbose = verbose
)
args <- c(args, dots)
do.call("p_value.default", args)
}

0 comments on commit 26113f4

Please sign in to comment.