Reading the terminal nodes of a R genereated Decision tree


mdftrain$fatf <- factor(mdftrain$fat)

tree <- ctree(fatf~calories+protein, data=mdftrain, controls= ctree_control(mincriterion = 0.75,minsplit = 10))
tree
plot(tree)

The decision tree is getting split at the calories but what is happening next?
Can someone please explain how to read the terminal node?

Sorry for this silly question

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.