1

How does a regression tree split the y variable? Is it just a case of even chunking of the range or are the chunks of variable size?

Trajan
  • 369
  • 4
  • 17

1 Answers1

1

The target variable is not split, features are. And, this is typically done via a greedy search over the features and possible thresholds. In the end, usually, the target variable of the samples in the leaves are averaged for outputting a prediction.

gunes
  • 49,700
  • 3
  • 39
  • 75