How to Solve NameError: name 'MissingIndicator' is not defined -- sklearn

Solution: Import the 'MissingIndicator' module

To Solve the error, add the following line to the top of your code.

from sklearn.impute import MissingIndicator

 

For more information:
Python sklearn MissingIndicator