How to Solve NameError: name 'RegressionEvaluator' is not defined -- pyspark

Solution: Import the 'RegressionEvaluator' module

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

from pyspark.ml.evaluation import RegressionEvaluator

 

For more information:
Python pyspark RegressionEvaluator