Dropping Features
Drop features from the dataset that have too many missing data values.
We'll cover the following...
Chapter Goals:
- Figure out exactly how many missing values are in each feature
- Drop the features that contain too many missing values
A. Counting the missing values
In the previous chapter, we figured out that each of the 'MarkDown'
features, along with ...
Ask