Decision Tree
Builds a decision tree to predict Target Variable column value from Predictor Variable(s) column values.
Input Data
Input data should contain following columns.
Target Variable - Column that has values to be predicted by the decision tree. It can be of categorical (binary or multi-class) or nuneric value.
Predictor Variable(s) - Column(s) that has values on which the prediction by decision tree is based.
Properties
Decision Tree
Min Size for Node before Split - Split is performed only if the sample size for the node is at least this size.
Min Size for Terminal Node - Split is not performed if it would make size of any of the resulting nodes smaller than this size.
Min Improvement Rate by Split - Split is not performed if it does not improve the fit of the tree by this ratio.
Max Levels for Tree Depth - Max depth of the resulting tree. Root node is counted as level 0.
Binary Classification
Cut Point for TRUE/FALSE - Cut point of predicted probability to be TRUE to decide whether a sample is classified as TRUE or FALSE.
Data Preprocessing
Sample Data Size - Number of rows to sample before building decision tree.
Random Seed - Seed used to generate random numbers. Specify this value to always reproduce the same result.
Max # of Categories for Target Variable - If categorical Target Variable column has more categories than this number, less frequent categories are combined into 'Other' category.
Max # of Categories for Predictor Vars - If categorical predictor column has more categories than this number, less frequent categories are combined into 'Other' category.
Imbalanced Data Adjustment
Adjust Imbalanced Data - Adjust imbalance of data in Target Variable (e.g. FALSE being majority and TRUE being minority.) by SMOTE (Synthetic Minority Over-sampling Technique) altorithm.
Target % of Minority Data
Maximum % Increase for Minority Size
Neighbors to Sample for Populating Data
Evaluation
Test Mode - Enables/Disables Test Mode, where data is split into training data and test data for evaluation of the resulting Decision Tree model.
Ratio for Test Data - Ratio of test data to select from the entire data. Default is 0.3.
Data Splitting Method
Random - Test data is randomly sampled from the original data.
Reserve Order in Data - Data that shows up later in the original data is used as test data.
How to Use This Feature
Click Analytics View tab.
If necessary, click "+" button on the left of existing Analytics tabs, to create a new Analytics.
Select "Decision Tree" for Type.
Select Target Variable column that you want to predict with the decision tree.
Select Predictor Variable(s) columns to be the basis of the prediction by the decison tree.
Click Run button to run the analytics.
Select view type by clicking view type link to see each type of generated visualization.
"Summary" View
"Summary" View displays metrics that describes the quality of the Decision Tree model.
"Prediction" View
"Prediction" View shows how the predicted value or probability by the model changes when only one of the predictor changes, on average on sampled data points.
"Importance" View
"Importance" View displays importances of variables for the prediction.
"Prediction Matrix" View
"Prediction Matrix" View displays a matrix where each column represents the instances in a predicted class while each row represents the instances in an actual class. It makes it easy to see how well the model is classifying the two classes. The darker the color, the higher the percentage value.
"Probability" View
For binary classification, "Probability" View shows distribution of predicted probability of being TRUE, for the observations that are actually TRUE and for the observations that are actually FALSE.
"Prediction Quality" View
When Target Variable is a number, "Prediction Quality" View shows a scatter plot with predicted values on X-axis, and actual values on Y-axis.
"ROC" View
For binary classification, "ROC" View displays Receiver Operating Characteristic Curve of the model. The area under this curve is the AUC, which indicates how well the model separates the TRUE class and the FALSE class.
"Data" View
Data View shows original input data with additional columns of predicted value and/or predicted probability.
Exploratory R Package
Under the cover, we make use of rpart
R package for the Decision Tree Analytics View. For details about how we use rpart
R package, please refer to the github repository.
exp_rpart
is the function we call for the Decision Tree Analytics View.
Name of the R function arguments for the parameters are as follows.
Max Size for Node before Split -
minsplit
Min Size for Terminal Node -
minbucket
Min Improvement Rate by Split -
cp
Max Levels for Tree Depth -
maxdepth
Last updated