InterviewSolution
Saved Bookmarks
| 1. |
What is kNN imputation and what are its pros & cons? |
||||
|
Answer» It is one of the methods to treat missing values other than direct DELETION, IMPUTATION using a mean/median/mode value, etc. In kNN imputation, the missing values of an attribute are imputed using the given number of attributes that are most similar to the attribute whose values are missing. The similarity of two attributes is determined using a distance function. Pros and Cons are DESCRIBED below.
|
|||||