Methods for computing on varrank objects.

# S3 method for varrank
print(x,digits=5, ...)

Arguments

x

an object of class varrank.

digits

an integer specifying the number of digits to display in the output.

...

additional arguments passed to print.

Details

digits gives the number of digits that will be displayed in the output. If more information are needed. There exists a summary S3 function that display more details.

Examples

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 varrank output varrank.output }
#> | | | 0% | |============ | 17% | |======================= | 33% | |=================================== | 50% | |=============================================== | 67% | |========================================================== | 83% | |======================================================================| 100%
#> [1] "glucose" "mass" "age" "pedigree" "insulin" "pressure" "pregnant" #> [8] "triceps"