Learn R Programming

ClassifyR (version 1.6.2)

SelectResult: Container for Storing Feature Selection Results

Description

Contains the ranked indices or names of features, from most discriminative to least discriminative and a list of indicies of feature selected for use in classification. This class is not intended to be created by the user, but could be used in another package.

Arguments

Constructor

SelectResult(datasetName, selectionName, rankedFeatures, chosenFeatures
datasetName
A name associated with the dataset used.
selectionName
A name associated with the classification.
rankedFeatures
Indices or names of all features, from most to least discriminative.
chosenFeatures
Indices or names of features selected at each fold.

Summary

A method which summarises the results is available. result is a SelectResult object.
show(result)Prints a short summary of what result contains.

Examples

Run this code
    SelectResult("Melanoma", "Moderated t-test", list(1:50), list(1:10))

Run the code above in your browser using DataLab