Find more posts tagged with
Sort by:
1 - 2 of
21
Hi,
RapidMiner calls this Decision Stump. It's among the tree based methods.
If you want the model to be a rule, not a (minimal) tree, check out Tree to Rules.
You can also limit the normal decision tree to maximal depth = 2, which will give you a one-rule decision, but with the positive properties of Decision Tree. (parallel processing, large number of settings, ...)
There is also Single Rule Induction, but it's not very flexible.
Regards,
Balázs
RapidMiner calls this Decision Stump. It's among the tree based methods.
If you want the model to be a rule, not a (minimal) tree, check out Tree to Rules.
You can also limit the normal decision tree to maximal depth = 2, which will give you a one-rule decision, but with the positive properties of Decision Tree. (parallel processing, large number of settings, ...)
There is also Single Rule Induction, but it's not very flexible.
Regards,
Balázs
I am not sure if Rapidminer has native operator for this. But, if you install Weka extension from rapidminer marketplace, then there is W-OneR operator in that.
To install weka extension, you need to go to Extension --> Marketplace and then search for Weka.
Hope this helps