How to find the feature regions where each label is the most expected when using decision trees?
Given a decision tree for classification for example this one:
What is the way to find the feature domain (petal and sepal width and length) where a sample would most likely occur in the feature space for each class?
It is clear here that for Setosa it is when petal length is less or equal to 2.45.
However, where I am confused is how to think in more complex cases. For example, let's take Versicolor:
I am hesitating between 2 choices or take every path that leads to Versicolor or just choose the domain (considering the path) that leads to the leaf with the most samples.
I don't necessarily care about this example, I want to know the general case and how to think to solve that problem.
Thanks