R/check_tidy_output.R

Defines functions check_tidy_output

Documented in check_tidy_output

#' Check the output of a tidy method
#'
#' @template boilerplate
#'
#' @description A thin wrapper around [check_tibble()].
#'
#' @param td Output from a tidy method.
#'
#' @export
check_tidy_output <- function(td, strict = TRUE) {
  check_tibble(td, method = "tidy", strict = strict)
}
alexpghayes/modeltests documentation built on May 8, 2024, 1:28 p.m.