Exploratory Data Analysis�By Nidhi Ranjan�
1
What is Exploratory Data Analysis
2
EDA is an approach for data analysis using variety of techniques to gain insights about the data.
Basic steps in any exploratory data analysis:
Importance of EDA
3
Improve understanding of variables by extracting averages, mean, minimum, and maximum values, etc.
Discover errors, outliers, and missing values in the data.
Identify patterns by visualizing data in graphs such as bar graphs, scatter plots, heatmaps and histograms.
EDA using Pandas
4
Import data into workplace(Jupyter notebook, Google colab, Python IDE)
Descriptive statistics
Removal of nulls
Visualization
1. Packages and data import
6
2. Descriptive Stats (Pandas)
1. Central tendency :
2. Spread : It is the measure of how far the datapoints are away from the mean or median
3. Skewness: It is a measure of asymmetry: dataframe.skew()
7
Descriptive Stats (contd.)
Other methods to get a quick look on the data:
8
3. Null values
9
Detecting
Detecting Null-values:
Handling
Handling null values:
4. Visualization
10
Bar-Graph,Histogram and Boxplot
11
Scatterplot, Pieplot
12
Outlier detection
13
Outlier removal
14
References
15