Description Usage Arguments Details Value Author(s) References Examples
Implement the stabilized nearest neighbor classification algorithm to predict the label of a new input using a training data set. The stabilized nearest neighbor classifier contains the K-nearest neighbor classifier and the optimal weighted nearest neighbor classifier as two special cases.
1 | mysnn(train, test, lambda)
|
train |
Matrix of training data sets. An n by (d+1) matrix, where n is the sample size and d is the dimension. The last column is the class label. |
test |
Vector of a test point. It also admits a matrix input with each row representing a new test point. |
lambda |
Tuning parameter controlling the degree of stabilization of the nearest neighbor classification procedure. The larger lambda, the more stable the procedure is. |
The tuning parameter lambda can be tuned via cross-validation, see cv.tune for the tuning procedure.
It returns the predicted class label of the new test point. If input is a matrix, it returns a vector which contains the predicted class labels of all the new test points.
Wei Sun, Xingye Qiao, and Guang Cheng
W. Sun, X. Qiao, and G. Cheng (2015) Stabilized Nearest Neighbor Classifier and Its Statistical Properties. Available at arxiv.org/abs/1405.6642.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.