ClassificationKNN - k-nearest neighbor classification - MATLAB (original) (raw)

_k_-nearest neighbor classification

Description

ClassificationKNN is a nearest neighbor classification model in which you can alter both the distance metric and the number of nearest neighbors. Because a ClassificationKNN classifier stores training data, you can use the model to compute resubstitution predictions. Alternatively, use the model to classify new observations using the predict object function.

Creation

Create a ClassificationKNN model using fitcknn.

Properties

expand all

KNN Properties

Tie-breaking algorithm used by predict when multiple classes have the same smallest cost, specified as one of the following:

By default, ties occur when multiple classes have the same number of nearest points among the k nearest neighbors.BreakTies applies whenIncludeTies is false.

Change BreakTies using dot notation:mdl.BreakTies = newBreakTies.

Since R2025a

Size in megabytes of the cache allocated for the Gram matrix, specified as "maximal" or a positive scalar. The software can use CacheSize only when theDistance value begins withfast.

If the CacheSize value is"maximal", then during prediction, the software attempts to allocate enough memory for the Gram matrix, whose size isn-by-m, wheren is the number of rows in the training predictor data X, and m is the number of rows in the test predictor data. The cache size does not have to be large enough for the Gram matrix, but must be at least large enough to hold an n-by-1 vector. Otherwise, the software uses the regular algorithm for computing the Euclidean distance.

If the Distance value begins withfast and CacheSize is too large or is "maximal", then the software might attempt to allocate a Gram matrix that exceeds the available memory. In this case, the software issues an error.

Change CacheSize using dot notation:mdl.CacheSize = 1e4.

Data Types: single | double | char | string

Distance metric, specified as a valid distance metric name or function handle. The allowable distance metric names depend on the neighbor-searcher method (see NSMethod).

NSMethod Value Distance Metric Names
"exhaustive" Any distance metric of ExhaustiveSearcher
"kdtree" "cityblock","chebychev","euclidean", or"minkowski"

This table includes valid distance metrics of ExhaustiveSearcher.

Distance Metric Names Description
"cityblock" City block distance.
"chebychev" Chebychev distance (maximum coordinate difference).
"correlation" One minus the sample linear correlation between observations (treated as sequences of values).
"cosine" One minus the cosine of the included angle between observations (treated as vectors).
"euclidean" Euclidean distance.
"fasteuclidean" (since R2025a) Euclidean distance computed by using an alternative algorithm that saves time when the number of predictors is at least 10. In some cases, this faster algorithm can reduce accuracy. Algorithms starting withfast do not support sparse data. For details, see Fast Euclidean Distance Algorithm.
"fastseuclidean" (since R2025a) Standardized Euclidean distance computed by using an alternative algorithm that saves time when the number of predictors is at least 10. In some cases, this faster algorithm can reduce accuracy. Algorithms starting withfast do not support sparse data. For details, see Fast Euclidean Distance Algorithm.
"hamming" Hamming distance, percentage of coordinates that differ.
"jaccard" One minus the Jaccard coefficient, the percentage of nonzero coordinates that differ.
"mahalanobis" Mahalanobis distance, computed using a positive definite covariance matrix C (seeDistParameter).
"minkowski" Minkowski distance, computed using a specified exponent (seeDistParameter).
"seuclidean" Standardized Euclidean distance. Each coordinate difference between X and a query point is scaled, meaning divided by a scale valueS (seeDistParameter).
"spearman" One minus the sample Spearman's rank correlation between observations (treated as sequences of values).
@distfun Distance function handle.distfun has the formfunction D2 = distfun(ZI,ZJ) % calculation of distance ...whereZI is a1-by-N vector containing one row ofX orY.ZJ is anM2-by-N matrix containing multiple rows ofX orY.D2 is anM2-by-1 vector of distances, and D2(k) is the distance between observationsZI andZJ(k,:).

Change Distance using dot notation:mdl.Distance = newDistance.

If NSMethod is "kdtree", you can use dot notation to change Distance only for the metrics "cityblock","chebychev", "euclidean", and"minkowski".

For more information, see Distance Metrics.

Data Types: char | string | function_handle

Distance weighting function, specified as one of the values in this table.

Value Description
"equal" No weighting
"inverse" Weight is 1/distance
"squaredinverse" Weight is 1/distance2
@fcn fcn is a function that accepts a matrix of nonnegative distances and returns a matrix of the same size containing nonnegative distance weights. For example,"squaredinverse" is equivalent to@(d)d.^(–2).

Change DistanceWeight using dot notation:mdl.DistanceWeight = newDistanceWeight.

Data Types: char | function_handle

Parameter for the distance metric, specified as one of the values described in this table.

Distance Metric Parameter
"mahalanobis" Positive definite covariance matrixC
"minkowski" Minkowski distance exponent, a positive scalar
"seuclidean" Vector of positive scale values with length equal to the number of columns of X

For any other distance metric, the value ofDistParameter must be[].

You can alter DistParameter using dot notation:mdl.DistParameter = newDistParameter. However, ifDistance is "mahalanobis" or"seuclidean", then you cannot alterDistParameter.

Data Types: single | double

Tie inclusion flag indicating whether predict includes all the neighbors whose distance values are equal to the _k_th smallest distance, specified as false ortrue. If IncludeTies istrue, then the predict object function includes all of these neighbors. Otherwise,predict uses exactly k neighbors (see the BreakTies property).

Change IncludeTies using dot notation:mdl.IncludeTies = newIncludeTies.

Data Types: logical

This property is read-only.

Nearest neighbor search method, returned as either"kdtree" or"exhaustive".

Number of nearest neighbors in X used to classify each point during prediction, specified as a positive integer value.

Change NumNeighbors using dot notation:mdl.NumNeighbors = newNumNeighbors.

Data Types: single | double

Other Classification Properties

This property is read-only.

Categorical predictor indices, returned as a vector of positive integers.CategoricalPredictors contains index values indicating that the corresponding predictors are categorical. The index values are between 1 and p, wherep is the number of predictors used to train the model. If none of the predictors are categorical, then this property is empty ([]).

Data Types: double

This property is read-only.

Names of the classes in the training data Y with duplicates removed, returned as a categorical or character array, logical or numeric vector, or cell array of character vectors.ClassNames has the same data type asY. (The software treats string arrays as cell arrays of character vectors.)

Data Types: categorical | char | logical | single | double | cell

Cost of the misclassification of a point, specified as a square matrix. Cost(i,j) is the cost of classifying a point into class j if its true class isi (that is, the rows correspond to the true class and the columns correspond to the predicted class). The order of the rows and columns in Cost corresponds to the order of the classes in ClassNames. The number of rows and columns in Cost is the number of unique classes in the response.

By default, Cost(i,j) = 1 if i ~= j, and Cost(i,j) = 0 if i = j. In other words, the cost is 0 for correct classification and 1 for incorrect classification.

Change a Cost matrix using dot notation:mdl.Cost = costMatrix.

Data Types: single | double

This property is read-only.

Expanded predictor names, returned as a cell array of character vectors.

If the model uses encoding for categorical variables, thenExpandedPredictorNames includes the names that describe the expanded variables. Otherwise,ExpandedPredictorNames is the same asPredictorNames.

Data Types: cell

This property is read-only.

Parameters used in training the ClassificationKNN model, returned as an object.

This property is read-only.

Predictor means, returned as a numeric vector of lengthnumel(PredictorNames).

If you do not standardize the predictor variables when training the model using fitcknn, then Mu is empty ([]).

Data Types: single | double

This property is read-only.

Number of observations used in training theClassificationKNN model, returned as a positive integer scalar. This number can be less than the number of rows in the training data because rows containing NaN values are not part of the fit.

Data Types: double

This property is read-only.

Predictor variable names, returned as a cell array of character vectors. The variable names are in the same order in which they appear in the training data X.

Data Types: cell

Prior probabilities for each class, specified as a numeric vector. The order of the elements in Prior corresponds to the order of the classes in ClassNames.

Add or change a Prior vector using dot notation:mdl.Prior = priorVector.

Data Types: single | double

This property is read-only.

Response variable name, returned as a character vector.

Data Types: char

This property is read-only.

Rows of the original training data used in fitting the ClassificationKNN model, returned as a logical vector. This property is empty if all rows are used.

Data Types: logical

Score transformation, specified as a character vector, string scalar, or function handle.

This table summarizes the built-in score transformations.

Value Description
"doublelogit" 1/(1 + e_–2_x)
"invlogit" log(x / (1 – x))
"ismax" Sets the score for the class with the largest score to 1, and sets the scores for all other classes to 0
"logit" 1/(1 + e_–_x)
"none" or "identity" x (no transformation)
"sign" –1 for x < 00 for _x_ = 01 for _x_ > 0
"symmetric" 2_x_ – 1
"symmetricismax" Sets the score for the class with the largest score to 1, and sets the scores for all other classes to –1
"symmetriclogit" 2/(1 + e_–_x) – 1

For a MATLAB® function or a function you define, use its function handle for score transform. The function handle must accept a matrix (the original scores) and return a matrix of the same size (the transformed scores).

Change ScoreTransform using dot notation:mdl.ScoreTransform = newScoreTransform.

Data Types: char | function_handle

This property is read-only.

Predictor standard deviations, returned as a numeric vector of lengthnumel(PredictorNames).

If you do not standardize the predictor variables during training, then Sigma is empty ([]).

Data Types: single | double

This property is read-only.

Observation weights, returned as a vector of nonnegative values with the same number of rows as Y. Each entry inW specifies the relative importance of the corresponding observation in Y.

Data Types: single | double

This property is read-only.

Unstandardized predictor data, returned as a numeric matrix. Each column of X represents one predictor (variable), and each row represents one observation.

Data Types: single | double

This property is read-only.

Class labels, returned as a categorical or character array, logical or numeric vector, or cell array of character vectors. Each value inY is the observed class label for the corresponding row in X.

Y has the same data type as the data inY used for training the model. (The software treats string arrays as cell arrays of character vectors.)

Data Types: single | double | logical | char | cell | categorical

Hyperparameter Optimization Properties

This property is read-only.

Cross-validation optimization of hyperparameters, returned as aBayesianOptimization object or a table of hyperparameters and associated values. This property is nonempty when the OptimizeHyperparameters name-value argument is nonempty when you create the model usingfitcknn. The value depends on the setting of the HyperparameterOptimizationOptions name-value argument when you create the model:

Object Functions

compareHoldout Compare accuracies of two classification models using new data
crossval Cross-validate machine learning model
edge Edge of _k_-nearest neighbor classifier
gather Gather properties of Statistics and Machine Learning Toolbox object from GPU
lime Local interpretable model-agnostic explanations (LIME)
loss Loss of _k_-nearest neighbor classifier
margin Margin of _k_-nearest neighbor classifier
partialDependence Compute partial dependence
plotPartialDependence Create partial dependence plot (PDP) and individual conditional expectation (ICE) plots
predict Predict labels using _k_-nearest neighbor classification model
resubEdge Resubstitution classification edge
resubLoss Resubstitution classification loss
resubMargin Resubstitution classification margin
resubPredict Classify training data using trained classifier
shapley Shapley values
testckfold Compare accuracies of two classification models by repeated cross-validation

Examples

collapse all

Train a _k_-nearest neighbor classifier using Fisher's iris data, where k, the number of nearest neighbors in the predictors, is 5.

Load Fisher's iris data.

load fisheriris X = meas; Y = species;

X is a numeric matrix that contains four measurements for 150 irises. Y is a cell array of character vectors that contains the corresponding iris species.

Train a 5-nearest neighbor classifier. Standardize the noncategorical predictor data.

Mdl = fitcknn(X,Y,NumNeighbors=5,Standardize=true)

Mdl = ClassificationKNN ResponseName: 'Y' CategoricalPredictors: [] ClassNames: {'setosa' 'versicolor' 'virginica'} ScoreTransform: 'none' NumObservations: 150 Distance: 'euclidean' NumNeighbors: 5

Properties, Methods

Mdl is a trained ClassificationKNN classifier.

To access the properties of Mdl, use dot notation.

ans = 3×1 cell {'setosa' } {'versicolor'} {'virginica' }

ans = 1×3

0.3333    0.3333    0.3333

Mdl.Prior contains the class prior probabilities, which you can specify using the Prior name-value argument in fitcknn. The order of the class prior probabilities corresponds to the order of the classes in Mdl.ClassNames. By default, the prior probabilities are the respective relative frequencies of the classes in the data.

You can also reset the prior probabilities after training. For example, set the prior probabilities to 0.5, 0.2, and 0.3, respectively.

Mdl.Prior = [0.5 0.2 0.3];

You can pass Mdl to predict to label new measurements or crossval to cross-validate the classifier.

Tips

Alternative Functionality

knnsearch finds the_k_-nearest neighbors of points. rangesearch finds all the points within a fixed distance. You can use these functions for classification, as shown in Classify Query Data. If you want to perform classification, then using ClassificationKNN models can be more convenient because you can train a classifier in one step (using fitcknn) and classify in other steps (using predict). Alternatively, you can train a _k_-nearest neighbor classification model using one of the cross-validation options in the call tofitcknn. In this case, fitcknn returns aClassificationPartitionedModel cross-validated model object.

Extended Capabilities

expand all

Usage notes and limitations:

For more information, see Introduction to Code Generation.

Usage notes and limitations:

For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).

Version History

Introduced in R2012a

expand all

The "fasteuclidean" and "fastseuclidean" distance metrics (Distance) accelerate the computation of Euclidean distances by using a cache and an alternative algorithm. You can set the size of the cache by using theCacheSize property.