R/anova_utils.R

Defines functions print.anova.uRegress

# Print method for class "anova"
#' @noRd
#' @export
print.anova.uRegress <- function(x, ...) {
  
  cat("Analysis of Deviance Table \n")
  cat("Null model: ")
  print(x$object)
  cat("\n")
  cat("Full model: ")
  print(x$full_object)
  cat("\n")
  stats::printCoefmat(t(x$printMat[1,]), digits = 4, 
                      has.Pvalue = TRUE)
}

Try the rigr package in your browser

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

rigr documentation built on Sept. 7, 2022, 1:05 a.m.