#' 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.