Description Usage Arguments Details Value References See Also Examples
Similarity-based method designed to select the most relevant instances for subsequent classification with a nearest neighbor rule. For more information, see 'Details' and 'References' sections.
1 2 3 4 5 |
formula |
A formula describing the classification variable and the attributes to be used. |
data, x |
Data frame containing the tranining dataset to be filtered. |
... |
Optional parameters to be passed to other methods. |
classColumn |
positive integer indicating the column which contains the (factor of) classes. By default, the last column is considered. |
CNN
searches for a 'consistent subset' of the provided dataset, i.e. a subset that is enough for
correctly classifying the rest of instances by means of 1-NN. To do so, CNN
stores the first instance and
goes for a first sweep over the dataset, adding to the stored bag those instances which are not correctly classified by 1-NN taking the stored bag as training set.
Then, the process is iterated until all non-stored instances are correctly classified.
Although CNN
is not strictly a label noise filter, it is included here for completeness, since
the origins of noise filters are connected with instance selection algorithms.
An object of class filter
, which is a list with seven components:
cleanData
is a data frame containing the filtered dataset.
remIdx
is a vector of integers indicating the indexes for
removed instances (i.e. their row number with respect to the original data frame).
repIdx
is a vector of integers indicating the indexes for
repaired/relabelled instances (i.e. their row number with respect to the original data frame).
repLab
is a factor containing the new labels for repaired instances.
parameters
is a list containing the argument values.
call
contains the original call to the filter.
extraInf
is a character that includes additional interesting
information not covered by previous items.
Hart P. (May, 1968): The condensed nearest neighbor rule, IEEE Trans. Inf. Theory, vol. 14, no. 5, pp. 515-516.
1 2 3 4 5 6 7 8 9 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.