Knn: Difference between revisions

From Eigenvector Research Documentation Wiki
Jump to navigation Jump to search
imported>Jeremy
imported>Scott
Line 40: Line 40:


* '''display''': [ 'off' | {'on'} ] governs level of display to screen.
* '''display''': [ 'off' | {'on'} ] governs level of display to screen.
* '''waitbar''' : [ 'off' | 'on' |{'auto'}] governs display of a waitbar when classifying. 'on' always shows a waitbar, 'off' never shows a waitbar, 'auto' shows a waitbar only when the data is particularly large.


* '''preprocessing''': { [ ] } A cell containing a preprocessing structure or  keyword (see PREPROCESS). Use {'autoscale'} to perform autoscaling on reference and test data.
* '''preprocessing''': { [ ] } A cell containing a preprocessing structure or  keyword (see PREPROCESS). Use {'autoscale'} to perform autoscaling on reference and test data.
* '''classset'''  : [ 1 ] indicates which class set in xref to use.


* '''nomajority''': [ 'error' | {'closest'} | class_number ] Behavior when no majority is found in the votes. 'closest' = return class of closest sample. 'error' = give error message. class_number (i.e. any numerical value) = return this value for no-majority votes (e.g. use 0 to return zero for all no-majority votes)
* '''nomajority''': [ 'error' | {'closest'} | class_number ] Behavior when no majority is found in the votes. 'closest' = return class of closest sample. 'error' = give error message. class_number (i.e. any numerical value) = return this value for no-majority votes (e.g. use 0 to return zero for all no-majority votes)

Revision as of 17:20, 10 June 2014

Purpose

K-nearest neighbor classifier.

Synopsis

pclass = knn(xref,xtest,k,options); %make prediction without model
pclass = knn(xref,xtest,options); %use default k
model = knn(xref,k,options) %create model
modelp = knn(xref,model,k,options) %apply model to xtest
modelp = knn(xtest,model,options) %apply model to xtest; predictions (equivalent to pclass) in modelp.classification.mostprobable.

Description

Performs kNN classification where the "k" closest samples in a reference set vote on the class of an unknown sample based on distance to the reference samples. If no majority is found, the unknown is assigned the class of the closest sample (see input options for other no-majority behaviors).

Inputs

  • xref = a DataSet object of reference data,
  • xtest = a DataSet object or Double containing the unknown test data.

Optional Inputs

  • model = an optional standard KNN model structure which can be passed instead of xref (note order of inputs: (xtest,model) ) to apply model to test data.
  • k = number of components {default = rank of X-block}.

Outputs

  • pclass = the voted closest class, if a majority of nearest neighbors were of the same class, or the class of the closest sample, if no majority was found (Only returned if xtest is supplied).
  • model = if no test data (xtest) is supplied, a standard model structure is returned which can be used with test data in the future to perform a prediction. Note that information about the classification of X-block samples is available in the classification field, described at Standard Model.

For more information on class predictions, see Sample Classification Predictions.

Options

options = structure array with the following fields :

  • display: [ 'off' | {'on'} ] governs level of display to screen.
  • waitbar : [ 'off' | 'on' |{'auto'}] governs display of a waitbar when classifying. 'on' always shows a waitbar, 'off' never shows a waitbar, 'auto' shows a waitbar only when the data is particularly large.
  • preprocessing: { [ ] } A cell containing a preprocessing structure or keyword (see PREPROCESS). Use {'autoscale'} to perform autoscaling on reference and test data.
  • classset  : [ 1 ] indicates which class set in xref to use.
  • nomajority: [ 'error' | {'closest'} | class_number ] Behavior when no majority is found in the votes. 'closest' = return class of closest sample. 'error' = give error message. class_number (i.e. any numerical value) = return this value for no-majority votes (e.g. use 0 to return zero for all no-majority votes)

See Also

analysis, cluster, dbscan, knnscoredistance, modelselector, plsda, simca, svmda