Data Scientist Question:
Download Job Interview Questions and Answers PDF
Tell me how is kNN different from kmeans clustering?
Answer:
Don’t get mislead by ‘k’ in their names. You should know that the fundamental difference between both these algorithms is, kmeans is unsupervised in nature and kNN is supervised in nature. kmeans is a clustering algorithm. kNN is a classification (or regression) algorithm.
kmeans algorithm partitions a data set into clusters such that a cluster formed is homogeneous and the points in each cluster are close to each other. The algorithm tries to maintain enough separability between these clusters. Due to unsupervised nature, the clusters have no labels.
kmeans algorithm partitions a data set into clusters such that a cluster formed is homogeneous and the points in each cluster are close to each other. The algorithm tries to maintain enough separability between these clusters. Due to unsupervised nature, the clusters have no labels.
Download Data Scientist Interview Questions And Answers
PDF
Previous Question | Next Question |
Tell me why is resampling done? | Can you differentiate between univariate, bivariate and multivariate analysis? |