Step through how a Decision Tree learns to classify data — watch it find the best split by minimizing Gini impurity at each node.
Recursive Binary Splitting on Best Feature Threshold
A Decision Tree greedily selects the split (feature + threshold) that most reduces impurity (Gini or entropy) at each step.