Regression Tree Interpretation
Hi everyone
After applying a model, I got this regression tree (see screenshot).
It is understandable, however can s.one give me an example of a clear interpretation of it?
Thank you very much!
After applying a model, I got this regression tree (see screenshot).
It is understandable, however can s.one give me an example of a clear interpretation of it?
Thank you very much!
Tagged:
0
Best Answers
-
varunm1 Moderator, MemberPosts:1,207UnicornHello@islem_h
Generally, a decision tree is formed based on rules. These rules can be extracted by "Tree to rules" operator or other like the one mentioned in an earlier post.
From the image you show, these are nested if-else statements that were formed by a decision tree based on its learning from your data.
If the attribute Acrooms value is greater than 4.3 then the tree check for a value in ELwater then if this is 0 it checks Acrooms again and if the value is greater than 7.5 it gives output 16646.31. Similarly all other outputs are interpreted.Regards,
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
5 -
sgenzer Administrator, Moderator, Employee, RapidMiner Certified Analyst, Community Manager, Member, University Professor, PM ModeratorPosts:2,959Community Manager
-
varunm1 Moderator, MemberPosts:1,207UnicornDid you try Get Decision Tree path (need to install operator toolbox extension) as mentioned by@yyhuang. This gives the tree structure and description as well. It starts from top and branches out. You can see image below.
<参数键= value =“process_duration_for_mail30"/>
<连接from_op = f“决策树”rom_port="model" to_op="Get Decision Tree Path" to_port="mod"/>
<连接from_op = f“决策树”rom_port="exampleSet" to_op="Get Decision Tree Path" to_port="exa"/>
Regards,
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
5
Answers
Have you tried the "Explain Predictions" operator and for trees we can extract the rules/path of the prediction
Best,
YY
The "tree to rules" operator doesn't support numerical variables and it is a regression task that I have at hand with numerous numerical attributes. How should I proceed in your opinion?