summary.varrank {varrank} | R Documentation |
Methods for detailed display of varrank
objects.
## S3 method for class 'varrank'
summary(object,digits=3, ...)
object |
an object of class |
digits |
an integer specifying the number of digits to display in the output. |
... |
additional arguments passed to summary. |
digits
gives the number of digits that will be displayed in the output. This method differs of print.varrank
by the amount of info displayed.
Gilles Kratzer
if (requireNamespace("mlbench", quietly = TRUE)) {
library(mlbench)
data(PimaIndiansDiabetes)
##forward search for all variables
varrank.output <- varrank(data.df = PimaIndiansDiabetes,
method = "peng",
variable.important = "diabetes",
discretization.method = "sturges",
algorithm = "forward", scheme = "mid")
##Print summary output of varrank object
summary(varrank.output)
}