From d8f824b5c5163206f1663ad4a656819f3b9b371a Mon Sep 17 00:00:00 2001 From: saeedkhosravi94 Date: Sun, 30 Nov 2025 23:50:12 +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 ee2f1f8..61be949 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` 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)