R/summary_comparaciones.R

Defines functions summary.comparaciones

#' @export
summary.comparaciones <- function(object, ...) {
  cat("=====================================\n")
  cat("  Multiple Comparison Method Summary\n")
  cat("=====================================\n")
  cat("Method used:", object$Metodo, "\n\n")

  cat(">> Group means:\n")
  print(round(object$Promedios, 4))

  cat("\n>> Order of means (from highest to lowest):\n")
  print(object$Orden_Medias)

  cat("\n>> Pairwise comparisons:\n")
  print(object$Resultados)

  invisible(object)
}

Try the Analitica package in your browser

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

Analitica documentation built on June 14, 2025, 9:07 a.m.