rlassoObjects of class rlasso are constructed by rlasso.
print.rlasso prints and displays some information about fitted rlasso objects.
summary.rlasso summarizes information of a fitted rlasso object.
predict.rlasso predicts values based on a rlasso object.
model.matrix.rlasso constructs the model matrix of a rlasso object.
# S3 method for rlasso
print(x, all = TRUE, digits = max(3L, getOption("digits") - 3L), ...)# S3 method for rlasso
summary(object, all = TRUE, digits = max(3L, getOption("digits") - 3L), ...)
# S3 method for rlasso
model.matrix(object, ...)
# S3 method for rlasso
predict(object, newdata = NULL, ...)
an object of class rlasso
logical, indicates if coefficients of all variables (TRUE) should be displayed or only the non-zero ones (FALSE)
significant digits in printout
arguments passed to the print function and other methods
an object of class rlasso
new data set for prediction. An optional data frame in which to look for variables with which to predict. If omitted, the fitted values are returned.