#'print_lm2
#'
#'Used to print lm2 outputs
#'
#'@param m A list output generated by lm2 function
#'
#'@export
print_lm2 <- function(m){
cat("Call: ", m$call, ' ', "Coefficients: ", sep = '\n')
print(m$coefficients)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.