Data Cleaning 101 in Python

preview_player
Показать описание
In this video, I show you the process of data cleaning in Python at a basic level to help you effectively prepare your data for analysis.

Outline:
0:00 - Intro
0:40 - Viewing & Understanding the Data
3:20 - Converting Data Types
4:52 - Deleting Unwanted Columns
6:11 - Renaming Columns
7:02 - Handling Duplicates
8:10 - Dealing with Missing Values
10:41 - Creating New/Derived Columns
11:50 - Recap

Correction:
Рекомендации по теме
Комментарии
Автор

Do more videos about pands and numpy please

pavanKumar-lhhb
Автор

df = df.drop_duplicates()
df = df.dropna()

Using my jupyter notebook, I need to apply this to implement duplicate and dropna back to the df. If not the duplicates and dropna doesn't apply to the df.

UzairSukor