#' Resid linreg
#'
#' Returns the residuals from the linear regression.
#'
#' @param my_lm An object of class "linreg".
#' @return The residuals from the linear regression.
#'
#'
#' @export
resid<-function(my_lm){
return(my_lm$Residuals)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.