#' Coef linreg
#'
#' Prints the coefficients from the linear regression.
#'
#' @param object An object of class "linreg".
#' @param ... other arguments.
#'
#' @return The coefficients from linreg.
#'
#' @export
coef.linreg<-function(object,...){
return(object$Coefficients)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.