summary.dglars
gives information about the sequence of models estimtaed by dgLARS method.
To select the best fitted model, summary method uses a measure of goodness-of-fit (GoF) defined as follows: $$-2 \mbox{log-likelihood} + k \mbox{comp},$$ where “comp” represents the term used to measure the complexity of the fitted models, and \(k\) is the 'weight' of the complexity in the previous formula. This quantity is computed using the functions “AIC.dglars
” or “BIC.dglars
”.
By default, summary.dglars
function computes the AIC criterion, but the user can use “dots
” to pass to the function AIC.dglars
the additional arguments needed to compute a more general measure of goodness-of-fit, i.e, “g
”, “phi
”, “k
” and “complexity
” (see “AIC.dglars
” for the description of these arguments). Below we give some examples on how to use these additional arguments.
The output of the summary method is divided in two sections.
The first section shows the call that produced object
followed by a data.frame
. The column named “Sequence
” gives information on how is changed the active set along the path. The column “g
” shows the sequence of the \(\gamma\)-values used to compute the solution curve, while the column “%Dev
” shows the the fraction of explained deviance. The remaining columns show the complexity measure, the used measure of goodness-of-fit and the corresponding ranking of the fitted models.
The second section shows the details of the selected model, i.e. family and link function used to specify the generalized linear model, the penalized estimate of the coefficient vector, the value of the tuning parameter, the null and residual deviance, and finaly the value of the used measure of goodness-of-fit. Information about the method and the algorithm used to compute the solution curve is also provided.