Question 14
For the given X_train (in pandas DataFrame) below which of the following options can successfully impute the null values ?
| Weight | Education | |
|---|---|---|
| 0 | NaN | School |
| 1 | 56.0 | High-School |
| 2 | 45.0 | Bachelor |
| 3 | NaN | Masters |
| 4 | 40.0 | School |
| 5 | 40.0 | High-School |
| 6 | 20.0 | Bachelor |
| 7 | 67.0 | NaN |
| 8 | 20.0 | School |
| 9 | 35.0 | NaN |