Different Types Of Mising Data & How To Handle It.

Different Types Of Mising Data & How To Handle It.

Different Types Of Mising Data & How To Handle It.

Introduction

The problem of missing value is quite common in many real-life datasets. Missing value can bias the results of the machine learning models and/or reduce the accuracy of the model. This article describes what is missing data, how it is represented, and the different reasons for the missing data. Along with the different categories of missing data, it also details out different ways of handling missing values with examples.

What is a Missing Value?

Missing data is defined as the values or data that is not stored (or not present) for some variable/s in the given dataset.In Pandas, usually, missing values are represented by NaN.It stands for Not a Number.

Why Is Data Missing From The Dataset

There can be multiple reasons why certain values are missing from the data.

Reasons for the missing data from the dataset affect the approach of handling missing data. So it’s necessary to understand why the data could be missing.

Some of the reasons are listed below:

  • Past data might get corrupted due to improper maintenance.
  • Observations are not recorded for certain fields due to some reasons. There might be a failure in recording the values due to human error.
  • The user has not provided the values intentionally.

Types Of Missing Values

Formally the missing values are categorized as follows:


Missing Completely At Random (MCAR):

In MCAR, the probability of data being missing is the same for all the observations.In this case, there is no relationship between the missing data and any other values observed or unobserved (the data which is not recorded) within the given dataset.That is, missing values are completely independent of other data. There is no pattern.In the case of MCAR, the data could be missing due to human error, some system/equipment failure, loss of sample, or some unsatisfactory technicalities while recording the values.

For Example, suppose in a library there are some overdue books. Some values of overdue books in the computer system are missing. The reason might be a human error like the librarian forgot to type in the values. So, the missing values of overdue books are not related to any other variable/data in the system.

It should not be assumed as it’s a rare case. The advantage of such data is that the statistical analysis remains unbiased.

Missing At Random (MAR):

Missing at random (MAR) means that the reason for missing values can be explained by variables on which you have complete information as there is some relationship between the missing data and other values/data.In this case, the data is not missing for all the observations. It is missing only within sub-samples of the data and there is some pattern in the missing values.

For example, if you check the survey data, you may find that all the people have answered their ‘Gender’ but ‘Age’ values are mostly missing for people who have answered their ‘Gender’ as ‘female’. (The reason being most of the females don’t want to reveal their age.)So, the probability of data being missing depends only on the observed data.In this case, the variables ‘Gender’ and ‘Age’ are related and the reason for missing values of the ‘Age’ variable can be explained by the ‘Gender’ variable but you can not predict the missing value itself.

Suppose a poll is taken for overdue books of a library. Gender and the number of overdue books are asked in the poll. Assume that most of the females answer the poll and men are less likely to answer. So why the data is missing can be explained by another factor that is gender.In this case, the statistical analysis might result in bias.Getting an unbiased estimate of the parameters can be done only by modeling the missing data.

Missing Not At Random (MNAR)

Missing values depend on the unobserved data.If there is some structure/pattern in missing data and other observed data can not explain it, then it is Missing Not At Random (MNAR).If the missing data does not fall under the MCAR or MAR then it can be categorized as MNAR.It can happen due to the reluctance of people in providing the required information. A specific group of people may not answer some questions in a survey.

For example, suppose the name and the number of overdue books are asked in the poll for a library. So most of the people having no overdue books are likely to answer the poll. People having more overdue books are less likely to answer the poll.

So in this case, the missing value of the number of overdue books depends on the people who have more books overdue.Another example, people having less income may refuse to share that information in a survey.In the case of MNAR as well the statistical analysis might result in bias.

Why Do We Need To Care About Handling Missing Value?

It is important to handle the missing values appropriately.Many machine learning algorithms fail if the dataset contains missing values. However, algorithms like K-nearest and Naive Bayes support data with missing values.You may end up building a biased machine learning model which will lead to incorrect results if the missing values are not handled properly.Missing data can lead to a lack of precision in the statistical analysis.

How To Handle The Missing Data

Analyze each column with missing values carefully to understand the reasons behind the missing values as it is crucial to find out the strategy for handling the missing values.

There are 2 primary ways of handling missing values:

  • Deleting the Missing values
  • Imputing the Missing Values

Deleting the Missing value:

Generally, this approach is not recommended. It is one of the quick and dirty techniques one can use to deal with missing values.If the missing value is of the type Missing Not At Random (MNAR), then it should not be deleted.If the missing value is of type Missing At Random (MAR) or Missing Completely At Random (MCAR) then it can be deleted.

The disadvantage of this method is one might end up deleting some useful data from the dataset.

There are 2 ways one can delete the missing values:

Deleting the entire row

If a row has many missing values then you can choose to drop the entire row.

If every row has some (column) value missing then you might end up deleting the whole data.

Deleting the entire column

If a certain column has many missing values then you can choose to drop the entire column.

Imputing the Missing Value

There are different ways of replacing the missing values.

Replacing With Arbitrary Value

If you can make an educated guess about the missing value then you can replace it with some arbitrary value.

Replacing With Mean

This is the most common method of imputing missing values of numeric columns. If there are outliers then the mean will not be appropriate. In such cases, outliers need to be treated first.You can use the ‘fillna’ method for imputing the columns.

Replacing With Mode

Mode is the most frequently occurring value. It is used in the case of categorical features.You can use the ‘fillna’ method for imputing the categorical columns.

Replacing With Median

Median is the middlemost value. It’s better to use the median value for imputation in the case of outliers.You can use ‘fillna’ method for imputing the columns.

Replacing with previous value – Forward fill

In some cases, imputing the values with the previous value instead of mean, mode or median is more appropriate. This is called forward fill. It is mostly used in time series data.You can use ‘fillna’ function with the parameter ‘method = ffill’.

Replacing with next value – Backward fill

In backward fill, the missing value is imputed using the next value.

Interpolation

Missing values can also be imputed using interpolation. Pandas interpolate method can be used to replace the missing values with different interpolation methods like ‘polynomial’, ‘linear’, ‘quadratic’. Default method is ‘linear’.

Imputing Missing Values For Categorical Features

There are two ways to impute missing values for categorical features as follows:

Impute the Most Frequent Value

We will make use of ‘SimpleImputer’ in this case and as this is a non-numeric column we can’t use mean or median but we can use most frequent value and constant.

Imputation of Missing Value Using sci-kit learn Library

Univariate Approach

In a Univariate approach, only a single feature is taken into consideration. You can use the class SimpleImputer and replace the missing values with mean, mode, median or some constant value.

Multivariate Approach

In a multivariate approach, more than one feature is taken into consideration. There are two ways to impute missing values considering the multivariate approach. Using KNNImputer or IterativeImputer classes.

Nearest Neighbors Imputations (KNNImputer)

Missing values are imputed using the k-Nearest Neighbors approach where a Euclidean distance is used to find the nearest neighbors.

Adding missing indicator to encode “missingness” as a feature

In some cases, while imputing missing values, you can preserve information about which values were missing and use that as a feature.

Because sometimes there may be a relationship between the reason for missing values (also called the “missingness”) and the target variable you are trying to predict.

Why do we need to do this?

Suppose you are predicting the presence of a disease and you can imagine a scenario in which a missing age is a good predictor of a disease because assume that we don’t have records for people in poverty. The age values are not missing at random. They are missing for people in poverty and poverty is a good predictor of disease. Thus, missing age or “missingness” is a good predictor of disease.

   ***Thank You***

0 Response to "Different Types Of Mising Data & How To Handle It."

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel