Nothing
make_coef <- function(object){
bhat <- object$b
np <- object$np
p <- object$p
bhat.mat <- Matrix(bhat, nrow = p + 1, sparse = TRUE)
bhat.mat <- bhat.mat[, 1:np, drop=FALSE]
vname <- c("Int.",colnames(object$X))
rownames(bhat.mat) <- vname
bhat.mat
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.