Description Creating objects Slots Extends Methods Author(s) See Also Examples
The Nearest Shrunken Centroid is computed using a threshold. This threshold is usually determined by finding the best threshold value over a set of values by finding the threshold leading to the best error rate assessed by cross-validation. This class stores the values of thresholds to be tried. If the user wants to use default values it's also possible.
new("thresholds")
Create an empty thresholds. The default thresholds values will be computed and this object updated as soon as it is linked in an assessment.
new("thresholds", optionValues)
Create a thresholds, containing the thresholds values defined by
optionValues
. The slot noOfOptions
is automatically updated.
optionValues
:numeric
Values of the thresholds, if
optionValues
has length zero then the default thresholds values must be used.
noOfOptions
:numeric
Number of thresholds.
Class "featureSelectionOptions"
, directly.
getNoThresholds(thresholds)
Retreive the number of the thresholds (slot noOfOptions)
getOptionValues(thresholds)
, getOptionValues(thresholds)<-
Retreive and modify the values of the thresholds (slot optionValues)
Camille Maumet
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Empty thresholds, the default values will be used when added to an assessment
emptThresholds <- new("thresholds")
getOptionValues(emptThresholds)
getNoThresholds(emptThresholds)
# Another thresholds
thresholds <- new("thresholds", optionValues=c(0,0.1,0.2,1,2))
getOptionValues(thresholds)
getNoThresholds(thresholds)
# Set the thresholds
newThresholds <- c(0.1,0.2,0.5,0.6,1)
getOptionValues(thresholds) <- newThresholds
getOptionValues(thresholds)
getNoThresholds(thresholds)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.