Dropping Features

Drop features from the dataset that have too many missing data values.

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