R/print.R

Defines functions print.mixedbiastest

Documented in print.mixedbiastest

#' Print Method for Bias Diagnostic Results
#'
#' Prints the results of the bias diagnostic in a formatted table.
#'
#' @param x An object of class `"mixedbiastest"`.
#' @param ... Additional arguments (currently not used).
#' @return No return value. This function is called for its side effects (printing the results).
#' @method print mixedbiastest
#' @export
print.mixedbiastest <- function(x, ...) {
  cat("Bias Diagnostic Results:\n")
  print(x$results_table, row.names = FALSE)
}

Try the mixedbiastest package in your browser

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

mixedbiastest documentation built on Aug. 19, 2025, 1:15 a.m.