R/normiecheck.R

Defines functions normiecheck

Documented in normiecheck

#' Prints Shapiro-Wilk Analysis on a regression model
#'
#' @param lm Regression model
#'
#' @return
#' @export
#'
#' @examples
#' normiecheck(spruce.lm)
#' See my Lab 4 implementation.
normiecheck <- function(lm) {
  normcheck(lm,shapiro.wilk = TRUE)
}
matthewCmatt/MATH4753CARROLL documentation built on April 20, 2021, 7:25 p.m.