1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/methods.R
\name{print.vsel}
\alias{print.vsel}
\title{Print results (summary) of variable selection}
\usage{
\method{print}{vsel}(x, ...)
}
\arguments{
\item{x}{An object of class \code{vsel} (returned by \code{\link[=varsel]{varsel()}} or \code{\link[=cv_varsel]{cv_varsel()}}).}
\item{...}{Further arguments passed to \code{\link[=summary.vsel]{summary.vsel()}} (apart from
argument \code{digits} which is passed to \code{\link[=print.vselsummary]{print.vselsummary()}}).}
}
\value{
The output of \code{\link[=summary.vsel]{summary.vsel()}} (invisible).
}
\description{
This is the \code{\link[=print]{print()}} method for \code{vsel} objects (returned by \code{\link[=varsel]{varsel()}} or
\code{\link[=cv_varsel]{cv_varsel()}}). It displays a summary of the results of the projection
predictive variable selection by first calling \code{\link[=summary.vsel]{summary.vsel()}} and then
\code{\link[=print.vselsummary]{print.vselsummary()}}.
}
|