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

Solution: Import the 'load_breast_cancer' module

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

from sklearn.datasets import load_breast_cancer

 

For more information:
Python sklearn load_breast_cancer