kNN Imputation for Missing Values in Machine Learning

Datasets may have missing values, and this can cause problems for many machine learning algorithms.

As such, it is good practice to identify and replace missing values for each column in your input data prior to modeling your prediction task. This is called missing data imputation, or imputing for short.

A popular approach to missing data imputation is to use a model to predict the missing values. This requires a model to be created for each input variable that has missing values. Although any one among a range of different models can be used to predict the missing values, the k-nearest neighbor (KNN) algorithm has proven to be generally effective, often referred to as “nearest neighbor imputation.”

In this tutorial, you will discover how to use nearest neighbor imputation strategies for missing data in machine learning.

After completing this tutorial, you will know:

  • Missing values must be marked with NaN values and can be replaced with nearest neighbor estimated values.
  • How to load a CSV file with missing values and mark the missing values with NaN values and report the number and percentage of missing values for each column.
  • How to impute missing values with nearest neighbor models as a data preparation method when evaluating models and when fitting a final model to make predictions on new data.

Kick-start your project with my new book Data Preparation for Machine Learning, including step-by-step tutorials and the Python source code files for all examples.

Let’s get started.

  • Updated Jun/2020: Changed the column used for prediction in examples.
kNN Imputation for Missing Values in Machine Learning

kNN Imputation for Missing Values in Machine Learning
Photo by portengaround, some rights reserved.

Tutorial Overview

This tutorial is divided into three parts; they are:

  1. k-Nearest Neighbor Imputation
  2. Horse Colic Dataset
  3. Nearest Neighbor Imputation With KNNImputer
    1. KNNImputer Data Transform
    2. KNNImputer and Model Evaluation
    3. KNNImputer and Different Number of Neighbors
    4. KNNImputer Transform When Making a Prediction

k-Nearest Neighbor Imputation

A dataset may have missing values.

These are rows of data where one or more values or columns in that row are not present. The values may be missing completely or they may be marked with a special character or value, such as a question mark “?“.

Values could be missing for many reasons, often specific to the problem domain, and might include reasons such as corrupt measurements or unavailability.

Most machine learning algorithms require numeric input values, and a value to be present for each row and column in a dataset. As such, missing values can cause problems for machine learning algorithms.

It is common to identify missing values in a dataset and replace them with a numeric value. This is called data imputing, or missing data imputation.

… missing data can be imputed. In this case, we can use information in the training set predictors to, in essence, estimate the values of other predictors.

— Page 42, Applied Predictive Modeling, 2013.

An effective approach to data imputing is to use a model to predict the missing values. A model is created for each feature that has missing values, taking as input values of perhaps all other input features.

One popular technique for imputation is a K-nearest neighbor model. A new sample is imputed by finding the samples in the training set “closest” to it and averages these nearby points to fill in the value.

— Page 42, Applied Predictive Modeling, 2013.

If input variables are numeric, then regression models can be used for prediction, and this case is quite common. A range of different models can be used, although a simple k-nearest neighbor (KNN) model has proven to be effective in experiments. The use of a KNN model to predict or fill missing values is referred to as “Nearest Neighbor Imputation” or “KNN imputation.”

We show that KNNimpute appears to provide a more robust and sensitive method for missing value estimation […] and KNNimpute surpass the commonly used row average method (as well as filling missing values with zeros).

Missing value estimation methods for DNA microarrays, 2001.

Configuration of KNN imputation often involves selecting the distance measure (e.g. Euclidean) and the number of contributing neighbors for each prediction, the k hyperparameter of the KNN algorithm.

Now that we are familiar with nearest neighbor methods for missing value imputation, let’s take a look at a dataset with missing values.

Want to Get Started With Data Preparation?

Take my free 7-day email crash course now (with sample code).

Click to sign-up and also get a free PDF Ebook version of the course.

Horse Colic Dataset

The horse colic dataset describes medical characteristics of horses with colic and whether they lived or died.

There are 300 rows and 26 input variables with one output variable. It is a binary classification prediction task that involves predicting 1 if the horse lived and 2 if the horse died.

There are many fields we could select to predict in this dataset. In this case, we will predict whether the problem was surgical or not (column index 23), making it a binary classification problem.

The dataset has many missing values for many of the columns where each missing value is marked with a question mark character (“?”).

Below provides an example of rows from the dataset with marked missing values.

You can learn more about the dataset here:

No need to download the dataset as we will download it automatically in the worked examples.

Marking missing values with a NaN (not a number) value in a loaded dataset using Python is a best practice.

We can load the dataset using the read_csv() Pandas function and specify the “na_values” to load values of ‘?’ as missing, marked with a NaN value.

Once loaded, we can review the loaded data to confirm that “?” values are marked as NaN.

We can then enumerate each column and report the number of rows with missing values for the column.

Tying this together, the complete example of loading and summarizing the dataset is listed below.

Running the example first loads the dataset and summarizes the first five rows.

We can see that the missing values that were marked with a “?” character have been replaced with NaN values.

Next, we can see a list of all columns in the dataset and the number and percentage of missing values.

We can see that some columns (e.g. column indexes 1 and 2) have no missing values and other columns (e.g. column indexes 15 and 21) have many or even a majority of missing values.

Now that we are familiar with the horse colic dataset that has missing values, let’s look at how we can use nearest neighbor imputation.

Nearest Neighbor Imputation with KNNImputer

The scikit-learn machine learning library provides the KNNImputer class that supports nearest neighbor imputation.

In this section, we will explore how to effectively use the KNNImputer class.

KNNImputer Data Transform

KNNImputer is a data transform that is first configured based on the method used to estimate the missing values.

The default distance measure is a Euclidean distance measure that is NaN aware, e.g. will not include NaN values when calculating the distance between members of the training dataset. This is set via the “metric” argument.

The number of neighbors is set to five by default and can be configured by the “n_neighbors” argument.

Finally, the distance measure can be weighed proportional to the distance between instances (rows), although this is set to a uniform weighting by default, controlled via the “weights” argument.

Then, the imputer is fit on a dataset.

Then, the fit imputer is applied to a dataset to create a copy of the dataset with all missing values for each column replaced with an estimated value.

We can demonstrate its usage on the horse colic dataset and confirm it works by summarizing the total number of missing values in the dataset before and after the transform.

The complete example is listed below.

Running the example first loads the dataset and reports the total number of missing values in the dataset as 1,605.

The transform is configured, fit, and performed, and the resulting new dataset has no missing values, confirming it was performed as we expected.

Each missing value was replaced with a value estimated by the model.

KNNImputer and Model Evaluation

It is a good practice to evaluate machine learning models on a dataset using k-fold cross-validation.

To correctly apply nearest neighbor missing data imputation and avoid data leakage, it is required that the models are calculated for each column are calculated on the training dataset only, then applied to the train and test sets for each fold in the dataset.

This can be achieved by creating a modeling pipeline where the first step is the nearest neighbor imputation, then the second step is the model. This can be achieved using the Pipeline class.

For example, the Pipeline below uses a KNNImputer with the default strategy, followed by a random forest model.

We can evaluate the imputed dataset and random forest modeling pipeline for the horse colic dataset with repeated 10-fold cross-validation.

The complete example is listed below.

Running the example correctly applies data imputation to each fold of the cross-validation procedure.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

The pipeline is evaluated using three repeats of 10-fold cross-validation and reports the mean classification accuracy on the dataset as about 86.2 percent, which is a reasonable score.

How do we know that using a default number of neighbors of five is good or best for this dataset?

The answer is that we don’t.

KNNImputer and Different Number of Neighbors

The key hyperparameter for the KNN algorithm is k; that controls the number of nearest neighbors that are used to contribute to a prediction.

It is good practice to test a suite of different values for k.

The example below evaluates model pipelines and compares odd values for k from 1 to 21.

Running the example evaluates each k value on the horse colic dataset using repeated cross-validation.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

The mean classification accuracy is reported for the pipeline with each k value used for imputation.

In this case, we can see that larger k values result in a better performing model, with a k=1 resulting in the best performance of about 86.7 percent accuracy.

At the end of the run, a box and whisker plot is created for each set of results, allowing the distribution of results to be compared.

The plot suggest that there is not much difference in the k value when imputing the missing values, with minor fluctuations around the mean performance (green triangle).

Box and Whisker Plot of Imputation Number of Neighbors for the Horse Colic Dataset

Box and Whisker Plot of Imputation Number of Neighbors for the Horse Colic Dataset

KNNImputer Transform When Making a Prediction

We may wish to create a final modeling pipeline with the nearest neighbor imputation and random forest algorithm, then make a prediction for new data.

This can be achieved by defining the pipeline and fitting it on all available data, then calling the predict() function, passing new data in as an argument.

Importantly, the row of new data must mark any missing values using the NaN value.

The complete example is listed below.

Running the example fits the modeling pipeline on all available data.

A new row of data is defined with missing values marked with NaNs and a classification prediction is made.

Further Reading

This section provides more resources on the topic if you are looking to go deeper.

Related Tutorials

Papers

Books

APIs

Dataset

Summary

In this tutorial, you discovered how to use nearest neighbor imputation strategies for missing data in machine learning.

Specifically, you learned:

  • Missing values must be marked with NaN values and can be replaced with nearest neighbor estimated values.
  • How to load a CSV file with missing values and mark the missing values with NaN values and report the number and percentage of missing values for each column.
  • How to impute missing values with nearest neighbor models as a data preparation method when evaluating models and when fitting a final model to make predictions on new data.

Do you have any questions?
Ask your questions in the comments below and I will do my best to answer.

Get a Handle on Modern Data Preparation!

Data Preparation for Machine Learning

Prepare Your Machine Learning Data in Minutes

...with just a few lines of python code

Discover how in my new Ebook:
Data Preparation for Machine Learning

It provides self-study tutorials with full working code on:
Feature Selection, RFE, Data Cleaning, Data Transforms, Scaling, Dimensionality Reduction, and much more...

Bring Modern Data Preparation Techniques to
Your Machine Learning Projects


See What's Inside

50 Responses to kNN Imputation for Missing Values in Machine Learning

  1. Avatar
    Kanchan June 27, 2020 at 2:25 am #

    Can we apply knn imputation for cases where missing value percentage is greater than 95%, also should we process such features?

    • Avatar
      Jason Brownlee June 27, 2020 at 5:35 am #

      Ouch.

      Perhaps, but the imputed values might not add a lot of value. Test and see.

  2. Avatar
    jade June 27, 2020 at 10:05 pm #

    excellent blog…..
    but we have to see what would be the value

    • Avatar
      Jason Brownlee June 28, 2020 at 5:50 am #

      You must try it and discover if it offers value for your project.

      • Avatar
        Roju September 16, 2020 at 9:30 pm #

        When I explicitly trained the model on the imputed data (without cross-validation), I got an accuracy of 1.0 for the training dataset. A very big concern!. what do you think might be wrong?. Check the code below for clarity.

        import numpy as np
        from pandas import read_csv
        from sklearn.ensemble import RandomForestClassifier
        from sklearn.impute import KNNImputer
        from sklearn.pipeline import Pipeline

        # load dataset
        url = ‘https://raw.githubusercontent.com/jbrownlee/Datasets/master/horse-colic.csv’

        data = read_csv(url, header=None, na_values=’?’)

        ix = [i for i in range(data.shape[1]) if i !=23]

        y, X = data.values[:, 23], data.values[:,ix]

        model = RandomForestClassifier()
        imputer = KNNImputer()

        pipeline = Pipeline(steps=[(‘i’, imputer), (‘m’, model)])

        pipeline.fit(X,y)

        print(pipeline.score(X,y))

        #output
        1.0

        [program finished]

        • Avatar
          Jason Brownlee September 17, 2020 at 6:46 am #

          Accuracy should always be 100% on train in the best case.

          Ignore performance on train, focus on performance on the hold out set.

  3. Avatar
    dsanz June 29, 2020 at 6:51 pm #

    Great post Jason!
    I think that a wrong column was taken as a “y”/prediction. Last column refers to “cp_data” (if a pathology is present or not, and according to “horse-colic.names” is of no significance since pathology data is not included or collected for these cases).
    I guess the prediction should be done over 23th-column; “outcome” with values 1 = lived,2 = died or 3 = was euthanized.

  4. Avatar
    Mitra mir July 8, 2020 at 2:30 am #

    Hey Jason I was wondering whether it is possible to apply knn imputation for time series too?

    • Avatar
      Jason Brownlee July 8, 2020 at 6:34 am #

      Perhaps. I would guess that persistence would be a better approach.

  5. Avatar
    Sara July 9, 2020 at 6:33 am #

    Hi, Thank you for the great tutorial.

    How we can evaluate only the Knn-imputer? I mean if for example, we want to compare the performance of two different imputers in a dataset how we can test them?

    Thanks

  6. Avatar
    Lily August 30, 2020 at 9:39 am #

    Hi Jason this is a great tutorial, thank you!
    I have a problem when using KNN imputer on a relatively larger dataset.
    I tried it out on a dataset –about 100K rows and 50 features. When I impute missing values using this method, I hit memory problems. Should I fit and transform by chunk (i.e iterate on every 1000 rows or so?) I am not sure if this is a good way to solve this issue.

    Thanks!

    • Avatar
      Jason Brownlee August 31, 2020 at 6:04 am #

      Sorry to hear that.

      Perhaps you can try on a machine with more memory?
      Perhaps you can use a smaller sample of your dataset to fit the imputer then apply it?
      Perhaps you can use a different imputer technique, like the statistical method?

  7. Avatar
    Georgia September 22, 2020 at 9:10 pm #

    Hi Jason, thanks for the tutorial! I applied this code to my train dataset however, the test set also includes missing values. So, should I create a KNN imputer for the test set also?

    • Avatar
      Jason Brownlee September 23, 2020 at 6:38 am #

      Fit the transform on the training set then apply it on the training set and the test set.

      Or use a pipeline to handle this automatically.

  8. Avatar
    Victor September 27, 2020 at 3:00 am #

    Hello Jason, thanks for this blog.
    I have a dataset with the shape of 56K X 52, after applying the KNN imputation to my dataset I noticed the columns increased from 52 to 97, what could go be wrong?
    I’m clueless , thanks.

    • Avatar
      Jason Brownlee September 27, 2020 at 6:55 am #

      I don’t know, perhaps try debugging your code to find the cause.

  9. Avatar
    Nirmala October 8, 2020 at 11:14 pm #

    Hello jason , thanks for blog .
    Why dont you create a code for handling missing value treatment with different types like mean ,median and data scaling techniques all together . Actually that helps me a lot.
    Thanking in advance

  10. Avatar
    Steve November 1, 2020 at 8:08 am #

    Hi Jason,

    Thank you for the article – it’s very impressive. Is there a repo I can use as a reference? I checked GitHub and looks like you don’t have anything public.

  11. Avatar
    garanktal December 8, 2020 at 7:36 pm #

    from sklearn.impute import KNNImputer

    ImportError: cannot import name ‘KNNImputer’ from ‘sklearn.impute’ (C:\ProgramData\Anaconda3\lib\site-packages\sklearn\impute.py)

    python 3.7 fails
    how to fix

    • Avatar
      Jason Brownlee December 9, 2020 at 6:14 am #

      You need to update your version of the scikit-learn library.

  12. Avatar
    Demetrios January 7, 2021 at 4:32 am #

    Hi Jason,

    Thank you for a great article/tutorial.

    I wondered whether there was any need to scale the data before imputation (as I have seen this mentioned elsewhere)?

    I am using this imputer at the start of my pipeline for a random forest regressor. The dataset, like the one in your example contains un-scaled features.

    • Avatar
      Jason Brownlee January 7, 2021 at 6:22 am #

      You’re welcome.

      Yes, scaling before imputation can help if you have variables with different scales.

  13. Avatar
    Pranav January 7, 2021 at 11:41 pm #

    How do we apply KNNImpute for Categorical features?

    • Avatar
      Jason Brownlee January 8, 2021 at 5:46 am #

      Perhaps ordinal encode the values then apply as per normal.

      • Avatar
        Pranav January 8, 2021 at 6:15 pm #

        Hi Jason,

        Thanks for the reply.

        Is it the right approach to apply ordinal encoding to the nominal categorical features?

        and what are the other ways of handling missing values in categorical features?

        • Avatar
          Jason Brownlee January 9, 2021 at 6:40 am #

          Yes, you can use ordinal encoding, replace missing with the “statistical mode”, then one hot encode or whatever you like to start modeling.

  14. Avatar
    Mark Littlewood February 4, 2021 at 7:56 pm #

    Hi Jason, many thanks for this, quick question, if you have created a pipeline, imputed missing values with KNN how would you then save this (eg pickle) so that when you supply a small live daily data file to the model it carries out all the operations in particular the KNN impute. Does it store the whole of the training file and hence enabling it to calculate missing values on the fresh data. I can see perhaps that with regression impute it creates a regression formula which can be stored but what about KNN

    • Avatar
      Jason Brownlee February 5, 2021 at 5:37 am #

      You’re welcome.

      You can pickle the pipeline directly.

      Yes, if a knn impute is used, it will save whatever it needs to impute in the future – e.g. a kd-tree of the training data.

  15. Avatar
    Ethan February 23, 2021 at 8:38 am #

    Hello and thanks for this great tutorial. I was wondering if there is there a reference available for this part: KNNImputer and Model Evaluation.

  16. Avatar
    Phil April 1, 2021 at 7:59 am #

    HI Jason, loving your site!

    Do you have any material coming up on imputing missing values on time series utilising other variables too? I’ve seen some papers using NN such as the following but no implementations.

    https://uwspace.uwaterloo.ca/bitstream/handle/10012/16561/Saad_Muhammad.pdf?sequence=5&isAllowed=y

    https://ieeexplore.ieee.org/abstract/document/8904638

    Thanks!

  17. Avatar
    Adnan Khan April 13, 2021 at 3:35 am #

    Can we apply KNN imputation row-wise?

  18. Avatar
    Ritvik Dhupkar May 24, 2021 at 9:04 pm #

    Hi Jason,
    Trying to implement a KNN imputation for a recommender system problem.
    Is there a way to change the distance from euclidean to cosine distance?
    Thanks,
    Ritvik

    • Avatar
      Jason Brownlee May 25, 2021 at 6:08 am #

      Yes, I believe you can specify the knn model with any distance metric you want.

  19. Avatar
    Dave June 25, 2021 at 12:03 am #

    Hi Jason,

    Which is the best way to impute nans in categorical variables? I use ‘zzz’ or mode, but i’m not happy with that.

    thanks man

    • Avatar
      Jason Brownlee June 25, 2021 at 6:17 am #

      There are many ways to perform imputation, try a suite of methods and discover what works best for your model and dataset.

  20. Avatar
    Cho June 7, 2022 at 9:52 pm #

    In my case, after running ‘KNNimputer’, number of columns was reduced which is I guess because multiple columns that have no value at all were removed. The resulting columns were named as ‘1,2,3,…’. How can I retrieve column names?

  21. Avatar
    Endrit July 6, 2022 at 8:17 pm #

    Hi Jason!

    Thank you for the post; it is very interesting and provides a thorough explanation of the KNN imputation technique 🙂

    I wanted to ask about more details regarding the comparison of KNN and other imputation techniques (e.g., MICE). Specifically, when would it be better (and why would we prefer) to use KNN relative to MICE?

    Thanks in advance!
    Endrit

  22. Avatar
    Dora July 3, 2023 at 11:55 pm #

    Hey, I wanted to know how you extract the imputed dataframe from this pipeline? Thanks

  23. Avatar
    Caio October 8, 2023 at 7:07 am #

    Hey james, I was wandering if it is a good approach normalize the variables befoe applying the KNN imputetion since it is based on euclidian distance?!

Leave a Reply