Enter your data below as comma-separated x,y pairs (one pair per line) or upload a CSV file. For multiple features, use format x1,x2,...,y with one data point per line. The calculator will build a decision tree model and provide statistics about the model quality.
Decision Tree Regression uses a tree-like model of decisions to predict continuous values. It splits the data into subsets based on feature values, creating a tree structure where each leaf node represents a prediction.
Decision Tree Regression works by recursively partitioning the feature space into regions, where each region corresponds to a leaf node in the tree. The algorithm:
The prediction for a new data point is the average of the target values in the leaf node it falls into.
Key parameters include:
Use Decision Tree Regression when:
Enter your data below as comma-separated x,y pairs (one pair per line) or upload a CSV file. For multiple features, use format x1,x2,...,y with one data point per line. The calculator will build a decision tree model and provide statistics about the model quality.