Decision tree is a decision support tool that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm that only contains conditional control statements.
정말 간단하게, 조건에 따라 데이터를 분류하는 모델이다
이미지 출처: https://lucy-the-marketer.kr/ko/growth/decision-tree-and-impurity/
이미지 출처: https://scikit-learn.org/stable/modules/tree.html
Gini criterion : 불순도(Impurity). 즉, 불순한 정도 혹은 섞여있는 정도이다. 불순도가 제일 낮은 경우가 서로 제일 안 섞여 있는 경우이다. ( Gini Criterion이 0이 될 때가 깔끔하게 나뉘어있는 경우)