Exploratory Data Analysis – The Go-To Technique to Explore Your Data!

Sameer Kumar 21 Sep, 2022 • 8 min read

This article was published as a part of the Data Science Blogathon.

Introduction

Exploratory Data Analysis(EDA) is one of the most underrated and under-utilized approaches in any Data Science project. EDA is the first step that data scientists perform where they study the data and extract valuable information and non-obvious insights from the data which ultimately helps during model building.

Before you model the data and test it, you need to build a relationship with the data. You can build this relationship by exploring the data, by plotting the data against the target variable, and observe how your data is behaving. This process of analysis before modeling is called Exploratory Data Analysis.

In this article, we are going to perform a hands-on EDA on a complex dataset from Kaggle(Advanced House Prediction). The link to the dataset is given below:

https://www.kaggle.com/c/house-prices-advanced-regression-techniques/data

The lifecycle of a Data Science Project

1) Exploratory Data Analysis

2) Feature Engineering

3) Feature Selection

4) Hyperparameter tuning

5) Model Building and deployment

Let us perform on this complex dataset which has around 81 independent features and 1 target variable(sale price). It is a Regression problem statement.

EDA will contain some basic steps like analyzing missing values, numerical and categorical features’ distribution, outliers, multicollinearity, etc. We will see each one of the steps one by one.

 

Missing Values

Most of the time the data we obtain contains missing values and we need to find whether there exists any relationship between missing data and the sale price(target variable). Depending on that we replace the missing value with something like the median of that column.

This is the python code to capture the missing values for a large dataset in a list where we replace the missing value with 1 and replace the non-missing value with 0 and plot against the median sale price to see whether there exists a relationship b/w null values and target variable or not.

 

LotFrontage 0.1774 % missing values
Alley 0.9377 % missing values
MasVnrType 0.0055 % missing values
MasVnrArea 0.0055 % missing values
BsmtQual 0.0253 % missing values
BsmtCond 0.0253 % missing values
BsmtExposure 0.026 % missing values
BsmtFinType1 0.0253 % missing values
BsmtFinType2 0.026 % missing values
FireplaceQu 0.4726 % missing values
GarageType 0.0555 % missing values
GarageYrBlt 0.0555 % missing values
GarageFinish 0.0555 % missing values
GarageQual 0.0555 % missing values
GarageCond 0.0555 % missing values
PoolQC 0.9952 % missing values
Fence 0.8075 % missing values
MiscFeature 0.963 % missing values

Since there are many missing values, we need to find the relationship between null values and the target variable(sale price)

This is one of the plots which shows that null values of Lot frontage feature have an impact on the target variable as it is increasing with the sale price. So yes, there exists a relationship b/w the two and we need to replace the null values with something substantial like the median of that particular feature.

Numerical Features

Since this is a large dataset we need to visualize the different types of variables like date-time(year), discrete and continuous numerical feature, categorical feature, and their behavior with the target variable.

There are 39 numerical features in this dataset. The data type for string or a mix of string and numeric is given as an object which we can check by using the types attribute.

 

Date Time variable(year feature or temporal variable)

This is the python code to find the year features and see how those four features behave with respect to the target variable.

We can see here that as the yr sold increases, the cost decreases. Now, this has to be an anomaly since it is not possible so we need to do more analysis and come to better conclusions. This just shows the importance of EDA and how it can affect our conclusions.

Instead of comparing the sale price with the yr sold feature, let us compare the sale price and the difference of all year features.

Now we can compare the sale price(median) with the year built and the year of remodification and come to various conclusions like the value on the X-axis increases, the price decreases.

 

Discrete numerical features

Discrete variables are the variables whose values exist in a particular range or are countable in a finite amount of time.

I have kept the threshold value for unique variables in a feature as 25 and those should not be in the year feature. Now let us see if there exists a relationship b/w discrete features and the target variable.

We can see that one of the features like OverallQuality has a direct relation with the target variable.

 

Continuous numerical features

These are the type of features whose value can be basically anything till infinity. By using histograms, we analyze their distribution throughout the data set.

Exploratory Data Analysis

We can see that the distribution we obtained is skewed. During regression problem statements, it is necessary to convert the skewed distribution to a normal distribution as it increases the accuracy of the model.

Logarithmic transformation is one of the techniques to convert a skewed distribution to a normal distribution where we take the log of all values of that particular feature and convert it into a whole new log feature itself. 

Exploratory Data Analysis

Exploratory Data Analysis

Outliers

The outlier is any data point that lies outside of the distribution of the data set.

The presence of outliers in the dataset can hamper the accuracy of the model. Algorithms like linear regression are very sensitive to outliers so it needs to be handled carefully.

The Standard Deviation method is a common method to identify and replace the outliers where any data point which lies outside the 3rd standard deviation is considered to be an outlier. Although that threshold standard deviation can change depending on the size of the data set.

Here in EDA, let us analyze the outliers in the data set using boxplot.

Exploratory Data Analysis

Exploratory Data Analysis

The black dots denote the outliers present which are away from the distribution. The lower line of the rectangular box is 25%ile and the upper line is 75%ile.

So those black dots are the values that need to be removed or replaced which we will see in feature engineering.

 

Categorical features

Exploratory Data Analysis

The data type for a categorical feature is an object and we can check that with types attribute of pandas.

Exploratory Data Analysis

We generally convert the categorical values of a feature into dummy variables so that our algorithm understands. This is called as One hot encoding. If the cardinality of a particular category is very high, then we do not use one-hot encoding as it might lead to a curse of dimensionality.

 

The feature is MSZoning and number of categories are 5
The feature is Street and number of categories are 2
The feature is Alley and number of categories are 3
The feature is LotShape and number of categories are 4
The feature is LandContour and number of categories are 4
The feature is Utilities and number of categories are 2
The feature is LotConfig and number of categories are 5
The feature is LandSlope and number of categories are 3
The feature is Neighborhood and number of categories are 25
The feature is Condition1 and number of categories are 9
The feature is Condition2 and number of categories are 8
The feature is BldgType and number of categories are 5
The feature is HouseStyle and number of categories are 8
The feature is RoofStyle and number of categories are 6
The feature is RoofMatl and number of categories are 8
The feature is Exterior1st and number of categories are 15
The feature is Exterior2nd and number of categories are 16
The feature is MasVnrType and number of categories are 5
The feature is ExterCond and number of categories are 5
The feature is Foundation and number of categories are 6
The feature is BsmtQual and number of categories are 5
The feature is BsmtCond and number of categories are 5
The feature is BsmtExposure and number of categories are 5
The feature is BsmtFinType1 and number of categories are 7
The feature is BsmtFinType2 and number of categories are 7
The feature is Heating and number of categories are 6
The feature is HeatingQC and number of categories are 5
The feature is CentralAir and number of categories are 2
The feature is Electrical and number of categories are 6
The feature is KitchenQual and number of categories are 4
The feature is Functional and number of categories are 7
The feature is FireplaceQu and number of categories are 6
The feature is GarageType and number of categories are 7
The feature is GarageFinish and number of categories are 4
The feature is GarageQual and number of categories are 6
The feature is GarageCond and number of categories are 6
The feature is PavedDrive and number of categories are 3
The feature is PoolQC and number of categories are 4
The feature is Fence and number of categories are 5
The feature is SaleType and number of categories are 9
The feature is SaleCondition and number of categories are 6

The threshold value of categories that I have chosen for this case to perform one-hot encoding is 10.

Now let us check whether there exists any relationship between the categorical features and the median of the target variable(sale price).

Exploratory Data Analysis

 

Multicollinearity

In any dataset, whenever the independent features are internally correlated with each other, it hampers the accuracy of the model because the individual contribution of the features cannot be obtained. This is called Multicollinearity.

This is a huge problem when it comes to algorithms like linear and logistic regression.

How to fix it?

We use the correlation matrix with heatmap to visualize the relationship of all the independent features with each other by their correlation coefficient values.

Generally, 0.7 is taken as the threshold which means if any 2 features have a correlation above 0.7, one of the two features can be dropped.

Exploratory Data Analysis

Conclusion

These were some important steps to perform in Exploratory Data Analysis and it also shows the importance of EDA when it comes to real-life projects. I hope everyone uses this technique while solving their project.

Happy Learning! 🙂

Sameer Kumar 21 Sep 2022

Frequently Asked Questions

Lorem ipsum dolor sit amet, consectetur adipiscing elit,

Responses From Readers

Clear

KARTIK RAJA
KARTIK RAJA 07 Oct, 2020

Excellent work 🔥🔥 Clear explanation of topics. It would help me in revision of the topics I've learnt.

Sara
Sara 07 Oct, 2020

Good job! Good analysation used.

Maanav Bhavsar
Maanav Bhavsar 07 Oct, 2020

Very well done👏🏻. Excellent stuff written

priyansh jain
priyansh jain 07 Oct, 2020

Amazing content, keep up the good work.

Aditi Jha
Aditi Jha 07 Oct, 2020

Very informative article, well written @Sameer287!!

Spandan pandey
Spandan pandey 07 Oct, 2020

Very informative article and very engaging to read too, i rarely find good articles on exploratory data analysis, this was very well made

Shubhangi Roy
Shubhangi Roy 07 Oct, 2020

Grreatttt work mannn..... it was a whole tough task to include all the imp data analytics topics and features in one, which you covered up very wellllll, Good Productive work...👍

Hitanshu Samantaray
Hitanshu Samantaray 08 Oct, 2020

It was a great read Sameer! A very detailed analysis and a really good explanation with graphics to make things even clearer Really helpful for someone like me who's just starting out in the field of Data Science

Manisha Jha
Manisha Jha 08 Oct, 2020

I am a java developer and willing to learn Machine Learning as it is the new technology everyone is talking about. Since I dont know anything about it, I have been following your articles on Medium regarding the topic and by far I have got the general concepts or a good overview of ML. Thanks for posting. Keep up the good work.

Pooja K
Pooja K 08 Oct, 2020

Amazing work !

ANURAG KASHYAP
ANURAG KASHYAP 08 Oct, 2020

It is an information article about exploratory data analysis. I got a lot to learn. Please come up with articles on data science.

Amar
Amar 08 Oct, 2020

Nice insight to EDA and very well represented...

Harsh Vardhan Guleria
Harsh Vardhan Guleria 08 Oct, 2020

The article is very informative and to the point.

Nachiket Talwar
Nachiket Talwar 08 Oct, 2020

Great article. Very infirmative Keep up the good work!

Sony Jha
Sony Jha 08 Oct, 2020

Well written @Sameer287

Arshad Ahmad
Arshad Ahmad 08 Oct, 2020

Detailed explanation for importance of exploratory data analysis. Great article.

Shamith Rao
Shamith Rao 08 Oct, 2020

Nice! Great work!

Saif Khan
Saif Khan 08 Oct, 2020

Very informative and very well written!

Sahil Tripathi
Sahil Tripathi 08 Oct, 2020

Informative article 💯

Subhash yadav
Subhash yadav 08 Oct, 2020

Good project for resolving problem and useful

Akash Deep
Akash Deep 08 Oct, 2020

perfectly described

Satyam Mishra
Satyam Mishra 08 Oct, 2020

Excellent work

Mayur
Mayur 08 Oct, 2020

Detailed insightful article. Thanks for sharing!

Aishwarya Jha
Aishwarya Jha 08 Oct, 2020

Very well articulated and informative too. Keep up the good work. Kudos!

Samarth Tyagi
Samarth Tyagi 08 Oct, 2020

wow.. this is great

Kashif Ahmed
Kashif Ahmed 08 Oct, 2020

Great Work!

Samarth Tyagi
Samarth Tyagi 08 Oct, 2020

so well written.. nice blog man

Sandilya Ventrapragada
Sandilya Ventrapragada 08 Oct, 2020

This is some invaluable information buddy! would love to see more

Sandilya Ventrapragada
Sandilya Ventrapragada 08 Oct, 2020

This is some invaluable information buddy !! would love to see more !

Tanushree Ganorkar
Tanushree Ganorkar 08 Oct, 2020

Very Informative article and get to know more about EDA . Great work Keep it up .

Vidhi Khatwani
Vidhi Khatwani 08 Oct, 2020

Good job Sameer! Very informative!

Arslan
Arslan 08 Oct, 2020

Well written Sam. Good going.

Prakhar Agarwal
Prakhar Agarwal 08 Oct, 2020

Well, great work Sameer!! Really appreciate the way you have covered all the basics concepts.

Aryan
Aryan 08 Oct, 2020

Amazing insights man! Really beneficial

Utkarsh Mishra
Utkarsh Mishra 08 Oct, 2020

Great content. Very informative.

Reva Chinchalkar
Reva Chinchalkar 08 Oct, 2020

A very elaborate and insightful article you've written there!

Jasmeet kaur
Jasmeet kaur 08 Oct, 2020

Awesome article, was very informative! I learnt a new stuff :)

Swara
Swara 08 Oct, 2020

Amazing!! Very informative 👍🏻

Sameer
Sameer 08 Oct, 2020

Thanks everyone!

Avi Shah
Avi Shah 08 Oct, 2020

Very well written !

Anika Sharma
Anika Sharma 08 Oct, 2020

Awesome article !!! Great job Sameer! It’s very informative

Sristi Uts
Sristi Uts 08 Oct, 2020

Great work 👏

Aatish irani
Aatish irani 08 Oct, 2020

Excellent work bro

Om.mengshetti
Om.mengshetti 09 Oct, 2020

Great work and amazing insights sir!🔥 Learnt something new from this

Bharat Rathi
Bharat Rathi 09 Oct, 2020

This article provides one of the best explanation to EDA. Great Work!!

Keny P.
Keny P. 09 Oct, 2020

Insightful and practical information!

Vanshika
Vanshika 09 Oct, 2020

Awesome work Sameer!!!!! 👏👏👏

Vanshika
Vanshika 09 Oct, 2020

Awesome work sameer!!!!

Manju
Manju 09 Oct, 2020

Excellent work Sameer !! 👍👍👍

Anirudha Jamjute
Anirudha Jamjute 09 Oct, 2020

Very informative. Keep it up Sameer. All the Very best wishes.

Manjula Jha
Manjula Jha 09 Oct, 2020

Great read. Keep it up👌

Aayush Dand
Aayush Dand 10 Oct, 2020

Very well written. Keep up the work bro

Easwaran
Easwaran 12 Oct, 2020

Great work Sameer!! 🙌💥

Komil S.
Komil S. 21 Nov, 2020

Very poor article, I don't know why people are giving such good reviews. Please don't encourage such links.

Related Courses

image.name
0 Hrs 27 Lessons
4.86

Pandas for Data Analysis in Python

Free

Machine Learning
Become a full stack data scientist

  • [tta_listen_btn class="listen"]