Skip to content

Commit d8cec3a

Browse files
committed
fix
1 parent b20f19d commit d8cec3a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

R/ci_kenward.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#' @rdname p_value_kenward
22
#' @export
3-
ci_kenward <- function(model, ...) {
3+
ci_kenward <- function(model, ci = 0.95, ...) {
44
UseMethod("ci_kenward")
55
}
66

77
#' @export
8-
ci_kenward.default <- function(model, ci = 0.95) {
8+
ci_kenward.default <- function(model, ci = 0.95, ...) {
99
if (!.check_REML_fit(model)) {
1010
model <- stats::update(model, . ~ ., REML = TRUE)
1111
}
@@ -28,7 +28,7 @@ ci_kenward.default <- function(model, ci = 0.95) {
2828
}
2929

3030
#' @export
31-
ci_kenward.glmmTMB <- function(model, ci = 0.95) {
31+
ci_kenward.glmmTMB <- function(model, ci = 0.95, ...) {
3232
if (!.check_REML_fit(model)) {
3333
model <- stats::update(model, . ~ ., REML = TRUE)
3434
}

R/standard_error_kenward.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ se_kenward.default <- function(model, ...) {
1919

2020

2121
#' @export
22-
se_kenward.glmmTMB <- function(model, component = "conditional") {
22+
se_kenward.glmmTMB <- function(model, component = "conditional", ...) {
2323
if (!.check_REML_fit(model)) {
2424
model <- stats::update(model, . ~ ., REML = TRUE)
2525
}

man/p_value_kenward.Rd

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)