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

Solution: Import the 'make_circles' module

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

from sklearn.datasets import make_circles

 

For more information:
Python make_circles sklearn