Nothing
alfa.lasso <- function(y, x, a = seq(-1, 1, by = 0.1), model = "gaussian", lambda = NULL,
xnew = NULL) {
res <- list()
for ( i in 1:length(a) ) {
xa <- Compositional::alfa(x, a[i], h = TRUE)$aff ## apply the alpha-transformation
mod <- glmnet::glmnet(xa, y, family = model, lambda = lambda)
est <- NULL
if ( !is.null(xnew) ) {
xnew <- Compositional::alfa(xnew, a[i], h = TRUE)$aff ## apply the alpha-transformation
est <- predict(mod, xnew, s = mod$lambda, type = "response")
}
res[[ i ]] <- list(mod = mod, est = est)
}
names(res) <- paste("alpha=", a, sep = "")
res
}
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.