The configuration parameters for the tree algorithm which specify the type of algorithm (classification, regression, etc.), feature type (continuous, categorical), depth of the tree, quantile calculation strategy, etc.
Method to train a decision tree model over an RDD
Method to train a decision tree model over an RDD
Training data: RDD of org.apache.spark.mllib.regression.LabeledPoint
DecisionTreeModel that can be used for prediction
Trains a decision tree model over an RDD.
Trains a decision tree model over an RDD. This is deprecated because it hides the static methods with the same name in Java.
(Since version 1.2.0) Please use DecisionTree.run instead.
:: Experimental :: A class which implements a decision tree learning algorithm for classification and regression. It supports both continuous and categorical features.