4.9 • 848 Ratings
🗓️ 26 October 2018
⏱️ 25 minutes
🧾️ Download transcript
Exploratory data analysis (EDA) sits at the critical pre-modeling stage of the data science pipeline, focusing on uncovering missing values, detecting outliers, and understanding feature distributions through both statistical summaries and visualizations, such as Pandas' info(), describe(), histograms, and box plots. Visualization tools like Matplotlib, along with processes including imputation and feature correlation analysis, allow practitioners to decide how best to prepare, clean, or transform data before it enters a machine learning model.
pd.read_csv('filename.csv')
.df.info()
: Displays data types and counts of non-null entries by column, quickly highlighting missing values.df.describe()
: Provides summary statistics for each column, including count, mean, standard deviation, min/max, and quartiles.df.corr()
in Pandas to assess linear relationships between features.df.info()
.df.describe()
.RobustScaler
.Click on a timestamp to play from that location
0:00.0 | You're listening to Machine Learning Applied. |
0:02.6 | This is the second of the visualization episodes. |
0:06.4 | In this one, we're going to talk about exploratory data analysis, aka EDA, as well as some charting fundamentals. |
0:15.2 | So exploratory data analysis, I threw that phrase around a lot in the last episode without describing it. |
0:22.3 | EDA is part of a larger pipeline for your machine learning process or your data science process. |
0:30.1 | This whole umbrella of what's called business intelligence, B.I, or even just data science. It's sort of the A to Z, the beginning to |
0:40.9 | end pipeline of what you're working on. The whole reason you have a machine learning model in the |
0:45.6 | first place is part of a pipeline. The first part of this pipeline is going to be getting your data |
0:50.7 | from some data source, maybe some data stream like Twitter or some sensors, |
0:55.0 | and then you're going to maybe convert that into something that can be stored on a database. |
0:59.0 | You might be cleaning up your data. |
1:01.0 | You would be visualizing your data and determining how it will fit into your machine learning model. |
1:06.0 | That's what's called exploratory data analysis, EDA. |
1:10.0 | EDA is looking at your data, figuring out if there's |
1:14.2 | holes in your data, the way that's distributed, how you're going to have to fix it up, tidy it up, |
1:19.4 | et cetera, before it hits the machine learning model. Okay, then it hits the machine learning model. |
1:24.7 | And then you have some results, maybe some information that's going to go to |
1:29.0 | the business decision makers so you output results with your machine learning model and then you |
1:34.6 | might maybe generate some visualizations or reports on those results and then deliver them to |
1:39.9 | the business people this whole pipeline from beginning to end, it's called business intelligence, |
1:44.6 | the business intelligence pipeline, B.I. You'll see that word a lot. And we'll talk about B.I. |
1:49.3 | in a future episode. We'll talk about each of the steps of this pipeline. And sort of all the tasks |
... |
Please login to see the full transcript.
Disclaimer: The podcast and artwork embedded on this page are from OCDevel, and are the property of its owner and not affiliated with or endorsed by Tapesearch.
Generated transcripts are the property of OCDevel and are distributed freely under the Fair Use doctrine. Transcripts generated by Tapesearch are not guaranteed to be accurate.
Copyright © Tapesearch 2025.