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
What algorithm does Decision Tree used in Rapidminer?
johnny5550822
Member Posts: 12 Contributor II
Hi all,
What kind of Decision tree algorithm does Rapidminer used? Does it take care of imbalanced data?
Thanks!
Johnny
What kind of Decision tree algorithm does Rapidminer used? Does it take care of imbalanced data?
Thanks!
Johnny
Tagged:
0
Answers
In general, exploring your data with a decision tree is a good idea, applying the model
on unseen data not always.
You may preprocess your data by applying the operator "Sample (Bootstrapping)"
but you should switch off preprocessing in the testing step.
For further documentation please refer to the documentation of the decision tree operator.
I am not sure which implementation the RapidMiner decision tree is using, I suppose something similar to C4.5. If you want to make sure to use C4.5 you can use W-J48 from the Weka Extension. That operator is a free implementation of C4.5.
Best regards,
Marius
Am I right?
If anyone has any information please share it here.
thanks
the algorithm stays the same, no matter which criterion you choose. Only in each node the "best" attribute for splitting is selected using a different method, depending on the parameter setting.
Best regards,
Marius
Thank you for your helpful answer.
So who knows what is the algorithm used by the operator "Decision Tree" to produce a decision tree?
For nominal attributes always one branch for each value is created. For numerical/date attributes always a binary split is performed. To find the best split value all possible values in the training data are tried.
The procedure is repeated until you have pure leaves or one of the pre-pruning conditions is met. Then optionally some post-pruning is applied.
Best regards,
Marius
I wanted to make myself sure!