editing readme.md
This commit is contained in:
@@ -4,7 +4,7 @@ We are dealing with an exteremly imbalance dataset related to electrocardiogram
|
|||||||
|
|
||||||
## STEP 1: Fill missing values
|
## STEP 1: Fill missing values
|
||||||
|
|
||||||
All the columns in our data contain missing values a range from 25 to 70. By using `from sklearn.impute import KNNImputer` we fill all of them using 5 of the nearst neighbors of that missing value
|
All the columns in our data contain missing values a range from 25 to 70. By using `from sklearn.impute import KNNImputer` we fill all of them using 5 of the nearst neighbors of that missing value.
|
||||||
|
|
||||||
```
|
```
|
||||||
imputer = KNNImputer(n_neighbors=5)
|
imputer = KNNImputer(n_neighbors=5)
|
||||||
|
|||||||
Reference in New Issue
Block a user