powered by
Produces a summary of a fitted SLOPE model, including information about the regularization path, model family, and fitted values.
# S3 method for SLOPE summary(object, ...)
An object of class "summary_SLOPE" with the following components:
"summary_SLOPE"
the call that produced the model
the model family
number of observations
number of predictors
whether an intercept was fit
number of steps in the regularization path
range of alpha values in the path
range of deviance ratios in the path
null deviance
data frame summarizing the regularization path
an object of class "SLOPE", typically from a call to SLOPE()
"SLOPE"
SLOPE()
other arguments (currently ignored)
SLOPE(), print.summary_SLOPE()
print.summary_SLOPE()
Other SLOPE-methods: coef.SLOPE(), deviance.SLOPE(), plot.SLOPE(), predict.SLOPE(), print.SLOPE(), score()
coef.SLOPE()
deviance.SLOPE()
plot.SLOPE()
predict.SLOPE()
print.SLOPE()
score()
fit <- SLOPE(heart$x, heart$y) summary(fit) # Multinomial example fit_multi <- SLOPE(wine$x, wine$y, family = "multinomial") summary(fit_multi)
Run the code above in your browser using DataLab