R/summary.eNetXplorer.R

Defines functions summary.eNetXplorer

Documented in summary.eNetXplorer

summary.eNetXplorer <- function(object, ...)
{
    coeff_mat = cbind(object$alpha,object$best_lambda,object$model_QF_est,object$QF_model_vs_null_pval)
    rownames(coeff_mat) = rep("",nrow(coeff_mat))
    colnames(coeff_mat) = c("alpha","lambda.max","QF.est","model.vs.null.pval")
    res <- list(call=object$call,
    coefficients=coeff_mat
    )
    class(res) <- "summary.eNetXplorer"
    res
}

Try the eNetXplorer package in your browser

Any scripts or data that you put into this service are public.

eNetXplorer documentation built on Aug. 30, 2020, 1:06 a.m.