Uses of Class
com.pervasive.datarush.analytics.knn.ClassificationScheme
-
Packages that use ClassificationScheme Package Description com.pervasive.datarush.analytics.knn Provides an implementation of the KNN algorithm using DataRush's sparse data API. -
-
Uses of ClassificationScheme in com.pervasive.datarush.analytics.knn
Subclasses of ClassificationScheme in com.pervasive.datarush.analytics.knn Modifier and Type Class Description class
VotingClassification
Methods in com.pervasive.datarush.analytics.knn that return ClassificationScheme Modifier and Type Method Description static ClassificationScheme
ClassificationScheme. avg()
Resolves the class of the query record by doing a straight average of all neighbors.ClassificationScheme
KNNClassifier. getClassificationScheme()
Gets how the classification of a record in the query data is determined from the classifications of its nearest neighbors in the example data.static ClassificationScheme
ClassificationScheme. vote()
Resolves the class of the query records by simple plurality of all neighbors (alternatively, the mode of the neighbors).Methods in com.pervasive.datarush.analytics.knn with parameters of type ClassificationScheme Modifier and Type Method Description void
KNNClassifier. setClassificationScheme(ClassificationScheme scheme)
Specifies how to determine the classification of a record in the query data from the classifications of its nearest neighbors in the example data.
-