Regression Trees ensemble

Greetings :raised_hand_with_fingers_splayed:

can I use Trees ensemble method with Regression Trees? how?

Hi @Omar_Alwaily

Short answer: Yes, you can

Are you asking for the implementation on python or how they work?

For instance, price can also be predicted using trees ensemble, the difference is that you take the mean of the groups to make your final prediction.

1 Like

Hi there,

here is a minimum example and docs of a decision tree regressor from scikitlearn also with links to references:

Note that besides bagged decision trees also boosted decision tree examples are available and documented as a potential improvement or next step, see also:

Best
Christian

1 Like

Instead of taking the votes take the average. it’s reasonable

Thank you :heart:

1 Like