In this video I will demonstrate how to handle missing values like a professional using Python Pandas!. By the end of this video you know how to find missing data, drop missing data, and fill missing data using Python pandas methods.
If you have a completely empty dataframe check this video out:
• Data Validation in Python: Using df.empty ...
0:00 Intro
0:16 Setting up the notebook
0:49 Spotting missing values with isna
2:21 Dropping missing values with dropna()
4:29 Saving the new dataframe
5:37 Filling missing values with interpolate()
7:19 Using fillna and ffill()
9:00 Advanced data fill - Conditional Fill
10:15 Closing