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

Solution: Import the 'RFE' module

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

from sklearn.feature_selection import RFE

 

For more information:
Python sklearn RFE