How to interpret split condition in Decision Tree

Hi guys, I am trying to run a decision tree with binary variables (dependent and all independent variables are binary).
However, I got this in the split


what does gendermen< 0.03937576 mean? after 2)
Was 0.03937576 the probability? Since 0 will be no and 1 will be yes. If 0.5 was set up as the cutoff, then gendermen<0.039 will be put in the "No" category, so it represents "women?"

Thank you!!

gendermen looks like a dummy variable created by train.formula() and gendermen< 0.03937576 should capture people who were not men (unless you centered and scaled these data).

The numbers in () are the rates of the outcome for that subgroup which predominantly had the class "no"

It is more interpretable if you don't convert them to dummy variables; the split would look like gender = "men".

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.