The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
How to use Regression Tree(CART - Variance reduction)
Hello
I am looking for Decision Tree operator for Regression (CART - Variance reduction)
But I can't find it
anyone know where can i find it ?
I am looking for Decision Tree operator for Regression (CART - Variance reduction)
But I can't find it
anyone know where can i find it ?
Tagged:
0
Best Answer
-
krim3405 Member Posts: 2 Learner IIWhat is the Base algorithm of the Decision Tree in the Rapid Miner?
0
Answers
Did you try the decision tree with "least squares" as a criterion? This is used for regression rapidminer.
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
Hi
SynopsisThis Operator generates a decision tree model, which can be used for classification and regression.
Description
A decision tree is a tree like collection of nodes intended to create a decision on values affiliation to a class or an estimate of a numerical target value. Each node represents a splitting rule for one specific Attribute. For classification this rule separates values belonging to different classes, for regression it separates them in order to reduce the error in an optimal way for the selected parameter criterion.
The building of new nodes is repeated until the stopping criteria are met. A prediction for the class label Attribute is determined depending on the majority of Examples which reached this leaf during generation, while an estimation for a numerical value is obtained by averaging the values in a leaf.
This Operator can process ExampleSets containing both nominal and numerical Attributes. The label Attribute must be nominal for classification and numerical for regression.
After generation, the decision tree model can be applied to new Examples using the Apply Model Operator. Each Example follows the branches of the tree in accordance to the splitting rule until a leaf is reached.
To configure the decision tree, please read the documentation on parameters as explained below.
look at this link please:
https://docs.rapidminer.com/latest/studio/operators/modeling/predictive/trees/parallel_decision_tree.html
regards
mbs
There is no single base model for decision tree operator in rapid miner, it switches based on your selection of criterion. So my understanding for least squares is a modified version of CART.
@IngoRM or @gmeier any suggestions here?
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
https://github.com/rapidminer/rapidminer-studio/tree/3a2da3e40bbadaf5515e04093867798c27d0654d/src/main/java/com/rapidminer/operator/learner/tree
Scott