Import Dataset

This lesson teaches the steps to import a CSV file into Python using Pandas.

A quick review of exploratory data analysis (EDA)

As a key part of data inspection, EDAExploratory Data Analysis involves summarizing the salient characteristics of your dataset in preparation for further processing and analysis.

EDA includes understanding the shape and distribution of the data, scanning for missing values, learning which features are most relevant based on correlation, and familiarizing yourself with the overall contents of the dataset. Gathering this intel helps inform algorithm selection and highlight parts of the data that require cleaning to prepare for further processing.

You can ...