Learn R Programming

NoiseFiltersR (version 0.1.0)

RNN: Reduced Nearest Neighbors

Description

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.

Usage

"RNN"(formula, data, ...)
"RNN"(x, classColumn = ncol(x), ...)

Arguments

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.

Value

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.

Details

RNN is an extension of CNN. The latter provides a 'consistent subset', i.e. it is enough for correctly classifying the rest of instances by means of 1-NN. Then, in the given order, RNN removes instances as long as the remaining do not loss the property of being a 'consistent subset'.

Although RNN is not strictly a class noise filter, it is included here for completeness, since the origins of noise filters are connected with instance selection algorithms.

References

Gates G.W. (1972): The Reduced Nearest Neighbour Rule. IEEE Transactions on Information Theory, 18:3 431-433.

See Also

CNN

Examples

Run this code
# Next example is not run in order to save time
## Not run: 
# data(iris)
# out <- RNN(Species~., data = iris)
# print(out)
# identical(out$cleanData, iris[setdiff(1:nrow(iris),out$remIdx),])
# ## End(Not run)

Run the code above in your browser using DataLab