aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/python/ml/random_forest_example.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/src/main/python/ml/random_forest_example.py')
-rw-r--r--examples/src/main/python/ml/random_forest_example.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/src/main/python/ml/random_forest_example.py b/examples/src/main/python/ml/random_forest_example.py
index c7730e1bfa..dc6a778670 100644
--- a/examples/src/main/python/ml/random_forest_example.py
+++ b/examples/src/main/python/ml/random_forest_example.py
@@ -74,8 +74,8 @@ if __name__ == "__main__":
sc = SparkContext(appName="PythonRandomForestExample")
sqlContext = SQLContext(sc)
- # Load and parse the data file into a dataframe.
- df = MLUtils.loadLibSVMFile(sc, "data/mllib/sample_libsvm_data.txt").toDF()
+ # Load the data stored in LIBSVM format as a DataFrame.
+ df = sqlContext.read.format("libsvm").load("data/mllib/sample_libsvm_data.txt")
# Map labels into an indexed column of labels in [0, numLabels)
stringIndexer = StringIndexer(inputCol="label", outputCol="indexedLabel")