R/ci_ml1.R

Defines functions ci_ml1

Documented in ci_ml1

#' @rdname p_value_ml1
#' @export
ci_ml1 <- function(model, ci = 0.95, ...) {
  df_ml1 <- dof_ml1(model)
  out <- lapply(ci, function(i) {
    .ci_dof(
      model = model,
      ci = i,
      effects = "fixed",
      component = "all",
      dof = df_ml1,
      method = "ml1",
      ...
    )
  })
  out <- do.call(rbind, out)
  row.names(out) <- NULL
  out
}

Try the parameters package in your browser

Any scripts or data that you put into this service are public.

parameters documentation built on Nov. 2, 2023, 6:13 p.m.