This function generates a standard list of model statistics. For each alpha
, it contains the
best value of lambda
(obtained by maximizing a quality function over out-of-bag instances),
the corresponding maximum value of the quality function, and the model significance (p-value
based on comparison to permutation null models).
# S3 method for eNetXplorer
summary(object, …)
eNetXplorer
object.
Additional parameters.
Vector of alpha
values.
Best lambda
obtained by maximization of the quality function.
Maximum of the quality function.
P-value from model vs null comparison to assess statistical significance.
# NOT RUN {
data(QuickStartEx)
fit = eNetXplorer(x=QuickStartEx$predictor,y=QuickStartEx$response,
family="gaussian",n_run=20,n_perm_null=10,seed=111)
summary(fit)
# }
Run the code above in your browser using DataLab