Skip to content

Latest commit

 

History

History
8 lines (4 loc) · 528 Bytes

readme.md

File metadata and controls

8 lines (4 loc) · 528 Bytes

The kNN algorithm is a non-parametric algorithm that can be used for either classification or regression. Non-parametric means that it makes no assumption about the underlying data or its distribution.

For each data point, the algorithm finds the k closest observations, and then classifies the data point to the majority.

Source:

Using kNN Classifier to Predict Whether the Price of Stock Will Increase