How to use Regression Tree(CART - Variance reduction)

krim3405krim3405 MemberPosts:2Contributor I
edited October 2019 inHelp
Hello
I am looking for Decision Tree operator for Regression (CART - Variance reduction)

But I can't find it

谁知道从哪里e can i find it ?
Tagged:

Best Answer

  • krim3405krim3405 MemberPosts:2Contributor I
    Solution Accepted
    What is the Base algorithm of the Decision Tree in the Rapid Miner?

Answers

  • varunm1varunm1 Moderator, MemberPosts:1,207Unicorn
    Hello@krim3405

    Did you try the decision tree with "least squares" as a criterion? This is used for regression rapidminer.
    Regards,
    Varun
    https://www.varunmandalapu.com/

    Be Safe. Follow precautions and Maintain Social Distancing

  • (删除用户)(删除用户) Posts:0Learner III
    @krim3405


    Hi

    Synopsis

    This 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 parametercriterion.

    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.www.turtlecreekpls.com/latest/studio/operators/modeling/predictive/trees/parallel_decision_tree.html


    regards

    mbs


  • varunm1varunm1 Moderator, MemberPosts:1,207Unicorn
    Hello@krim3405

    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.

    @IngoRMor@gmeierany suggestions here?
    Regards,
    Varun
    https://www.varunmandalapu.com/

    Be Safe. Follow precautions and Maintain Social Distancing

  • sgenzersgenzer Administrator, Moderator, Employee, RapidMiner Certified Analyst, Community Manager, Member, University Professor, PM ModeratorPosts:2,959Community Manager
    edited October 2019
    @krim3405yes@varunm1is correct of course. The best way to answer your question is simply to share the code with you. All of RapidMiner's learner operators are 100% open source on GitHub.:smile:

    https://github.com/rapidminer/rapidminer-studio/tree/3a2da3e40bbadaf5515e04093867798c27d0654d/src/main/java/com/rapidminer/operator/learner/tree

    Scott
    varunm1
Sign InorRegisterto comment.