Introduction

One of the main difficulties in applying neural networks to real-world problems is that the data set is often incomplete. In this post we will explain the primary methods for dealing with missing values in machine learning and when to use each one.

We can use several methods to deal with missing values.

The most common ones are to remove the sample containing the missing value or replace it with the variable’s mean.

In any case, none of the above methods is always the most appropriate.

Therefore, we must study our data set in detail to obtain the best results.

Usually, missing values are denoted by a label in the data set.

Some standard labels used for representing missing values are NA (not available), NaN (not a number), Unknown, or ?.

Using numeric values, such as -999, is not recommended as they could be mistaken for reals values.

Throughout this work, we will choose the label NA to denote a missing value.

Contents

    1. Samples unusing
    2. Data imputation
    3. Time series data interpolation
    4. Conclusions

2. Samples unusing

This method sets samples as unused if they have missing values, excluding samples with missing values from the analysis in the machine learning model.

ui = unused, if ui contains NA, i=1,…,p.

We can use it when the number of samples in the data set is large, and the number of missing values is negligible concerning the number of samples.

Example: Samples unusing

A hospital has conducted a study to predict which treatment produces the best survival in patients with colon cancer after surgery.

How well a patient does after surgery depends on how much residual cancer remains.

This example examines data from a randomized controlled trial (RCT) measuring the effect of a particular drug combination on colon cancer.

The study data set has samples from 607 patients and 12 variables.

IDSexAgeObstructionPerforationOutcome
1male43nonodie
2male63nonosurvive
928female48yesnosurvive

The total number of missing values is 17.

Missing valuesMissing samples
17 (0%)17 (2%)

Since the number of missing values is negligible in the number of samples we have, we can eliminate the samples containing missing values from the analysis.

After removing the samples containing missing values, we are left with a dataset with 590 samples.

3. Data imputation

In some cases, almost all samples used in machine learning models contain missing values, and choosing the first method would significantly lose information.

If the data set is small or the number of missing values is considerable, you cannot afford not to use samples with missing values.

In such cases, assigning probable values to the missing data is advisable.

In this sense, imputation replaces missing data with estimated data.

The most common imputation method replaces missing values with the mean value of the corresponding variable.

In some situations, the median or the mode is used instead of the mean as the imputation value.

dij = vjmean, if dij = NA, i=1,…,p, j=1,…,q.

It is convenient to carry out a previous study of the data to know when to replace the missing value with the mean or median.

If the variable is numerical but has outliers, variables with asymmetric data, it is advisable to replace the missing values with the median.

On the contrary, if the variable is numerical and has no outliers, it is advisable to choose the median value of the data.

Example: Data imputation

A Portuguese bank institution aims to predict which bank clients will subscribe to a long-term deposit and which will not.

The data set used is related to the direct marketing campaigns of a Portuguese bank institution.

We have a dataset with 16 variables and 4120 samples.

A total of 8350 (12 %) missing values and 3591 (87 %) missing samples have been recorded.

Missing valuesMissing samples
8350 (12%)3591 (87%)

We would lose too much information if we eliminated all samples with missing values.

To solve the problem, we must make a previous study of the data and replace the missing values with the most reasonable estimate.

We can decide whether to replace missing values with the mean or the median by calculating the data statistics.

VariableMaximum valueMinimum valueMeanMedian
age871941.2239
education312.152
balance71182-33131439.81422
contact_type100.090
last_contact8711223.67189
previous_conversion100.200

Taking into account the statistical results and observing no outliers, we can replace the missing values with the mean of the corresponding variable.

4. Time series data interpolation

This method can be helpful to impute missing values in time series.

If we have a dataset with time series containing missing values, we can give it values by performing interpolation.

However, if several consecutive values are missing in a data set column, the interpolation in that period will be less accurate.

Example:

An oil company collects production data from oil wells. Analysis of this data is essential to maximize production and detect potential problems.

In the dataset, we have a variable representing the daily volume of oil in cubic meters.

This chart shows the missing values in the dataset

To treat these missing values, interpolation is carried out.
This chart shows the interpolation applied to missing values.
This chart shows the interpolation applied to missing values.

5. Conclusions

Missing values are unknown elements of the data matrix.

To perform the model, we have two options: to eliminate the samples containing missing values or to replace the missing values with the mean or median. There are other more advanced techniques, such as nearest neighbor.

Related posts