Nearest Neighbors

KNeighborsClassifier/KNeighborsRegressor/LocalOutlierFactor/RadiusNeighborsClassifier/RadiusNeighborsRegressor/NearestCentroid/Neighborhood Comp. Analysis

Common

Input Data

Inputs

*Target Data

Data Input

*Model Name

Name of the user-defined linear model

Predict Output

If not empty, the model will additionally make prediction on Target Data and store

the result here.

Merge Data

Predict Output will be created with predicted labels concatenated to Merge Data.

*x

User-selected columns to be x.

  • One or more numeric columns should be selected.

*y

User-selected columns to be y.

  • Only one column should be selected.

[Task information of KNeighborsClassifier]

Workflow Example

R-Flow Task Example Video- KNeighborsClassifier

Python Package

KNeighborsClassifier: https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.KNeighborsClassifier.html

KNeighborsRegressor: https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.KNeighborsRegressor.html

LocalOutlierFactor: https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.LocalOutlierFactor.html

RadiusNeighborsClassifier: https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.RadiusNeighborsClassifier.html

RadiusNeighborsRegressor: https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.RadiusNeighborsRegressor.html

NearestCentroid: https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.NearestCentroid.html

Neighborhood Comp. Analysis: https://scikit-learn.org/stable/modules/generated/sklearn.neighbors.NeighborhoodComponentsAnalysis.html

Last updated

Was this helpful?