From 7de3f7893d6fc5c7451ff8627ee2b33850438532 Mon Sep 17 00:00:00 2001 From: saeedkhosravi94 Date: Sun, 30 Nov 2025 23:49:58 +0100 Subject: [PATCH] editing readme.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10ab82f..ee2f1f8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ We are dealing with an exteremly imbalance dataset related to electrocardiogram ## 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` + 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)