Nothing
predict_Lasso_SIR <- function( lassosirobj, newdata )
{
n = dim(newdata)[1]
p = dim(newdata)[2]
if( is.data.frame(newdata) )
newdata = array( unlist( data.frame(newdata)), c(n,p))
predict_value = newdata %*% lassosirobj$beta
list( predict_value = predict_value, beta = lassosirobj$beta, no.dim = lassosirobj$no.dim )
}
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.