Skip to content

Commit

Permalink
doc tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
bbolker committed Mar 31, 2024
1 parent b32892e commit 864b8f1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/lme4_tidiers.R
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@
NULL

#' @export
confint.rlmerMod <- function(x, parm,
confint.rlmerMod <- function(object, parm, level,
method = "Wald", ...) {
cc <- class(x)
class(x) <- "merMod"
cc <- class(object)
class(object) <- "merMod"
if (method != "Wald") {
warning("only Wald method implemented for rlmerMod objects")
}
return(confint(x, parm = parm, method = "Wald", ...))
return(confint(object, parm = parm, level = level, method = "Wald", ...))
}

## FIXME: relatively trivial/only used in one place, could
Expand Down
2 changes: 2 additions & 0 deletions R/lqmm_tidiers.R
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#' David Luke Thiessen on \href{https://stackoverflow.com/questions/72514230/is-it-possible-to-use-lqmm-with-a-mira-object}{Stack Exchange}, provide support for linear quantile mixed models. They have not been carefully tested - please
#' check output carefully and report problems!
#'
#' @inheritParams lme4_tidiers
#'
#' @export
tidy.lqmm <- function(x, conf.int = FALSE, conf.level = 0.95, ...) {
as_tidy_tibble(data.frame(
Expand Down
10 changes: 10 additions & 0 deletions man/tidy.lqmm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 864b8f1

Please sign in to comment.