aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/python/ml/random_forest_regressor_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/src/main/python/ml/random_forest_regressor_example.py')
-rw-r--r--examples/src/main/python/ml/random_forest_regressor_example.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/src/main/python/ml/random_forest_regressor_example.py b/examples/src/main/python/ml/random_forest_regressor_example.py
index 4bb84f0de8..3a793737db 100644
--- a/examples/src/main/python/ml/random_forest_regressor_example.py
+++ b/examples/src/main/python/ml/random_forest_regressor_example.py
@@ -29,7 +29,10 @@ from pyspark.ml.evaluation import RegressionEvaluator
from pyspark.sql import SparkSession
if __name__ == "__main__":
- spark = SparkSession.builder.appName("random_forest_regressor_example").getOrCreate()
+ spark = SparkSession\
+ .builder\
+ .appName("random_forest_regressor_example")\
+ .getOrCreate()
# $example on$
# Load and parse the data file, converting it to a DataFrame.