#' Extract Model Coefficients
#'
#' @param object a \code{\link{slmfit}} object
#' @param ... additional arguments
#' @return a vector of fitted model coefficients.
#' @export
coef.slmfit <- function(object, ...)
{
coef.vec <- object$CoefficientEsts
return(coef.vec)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.