3.2 Decision Trees

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Section 3.2 of Exam MAS-II

Last updated 4:11 PM on 8/20/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

11 Terms

1
New cards

Root node

Terminal nodes or leaves

Internal nodes

Parent nodes

Child nodes

Branches

Stump

Terminal nodes

Internal nodes


The node before any splits occur. It contains all observations.

The partitions of the predictor space.

Points along the tree where splits occur.

Nodes where splits occur.

Nodes produced by a split.

Lines that connect any two nodes.

A decision tree with only one internal node.

Do not have child nodes.

Have child nodes.


2
New cards
term image
knowt flashcard image
3
New cards

Decision Tree Algorithm

  1. Construct a large tree using recursive binary splitting.

  2. Obtain a sequence of best subtrees, as a function of , using cost complexity pruning.

  3. Choose by applying -fold cross-validation. The that results in the lowest cross-validation error is selected.

  4. The best subtree is the subtree created in step 2 with the selected value.


4
New cards

Tree Construction:

Recursive binary splitting partitions the predictor space into ______

The resulting regions are _____

  • Recursive binary splitting partitions the predictor space into as many regions as possible while subject to stopping criteria.

  • The resulting regions are high-dimensional rectangles, or boxes.


5
New cards

Tree Construction:

For regression, the best splits are _____. (describe equation)

For classification, the best split is the split that _____. (describe equation)

knowt flashcard image
6
New cards

Classification Tree Construction: Impurity Measures and Equations

knowt flashcard image
7
New cards

Classification Tree Construction:

  1. If a node is relatively pure, then it contains observations that are

  2. The Gini index and cross entropy are sensitive to _____. They are favored in _____.

  3. The classification error rate is not sensitive to _____. It is favored in _____.


  • If a node is relatively pure, then it contains observations that are mainly from the same class.

  • The Gini index and cross entropy are sensitive to node purity. They are favored in tree-growing.

  • The classification error rate is not sensitive to node purity. It is favored in tree-pruning.


8
New cards

Tree Pruning: What’s it called and what does it minimize for regression and classification

knowt flashcard image
9
New cards

Cross Validation

knowt flashcard image
10
New cards
  1. The number of terminal nodes is directly related to ______.

  2. Decision trees will outperform linear regression when the chosen functional form _____ approximates the true relationship between the response and explanatory variables.


  • The number of terminal nodes is directly related to flexibility.

  • Decision trees will outperform linear regression when the chosen functional form poorly approximates the true relationship between the response and explanatory variables.


11
New cards

Advantages of Trees (4)

Disadvantages of Trees (2)

Advantages of Trees

  • Easy to interpret and explain

  • Can be presented visually

  • Manage categorical variables without the need of dummy variables

  • Mimic human decision-making

Disadvantages of Trees

  • Not robust

  • Do not have the same degree of predictive accuracy as other statistical methods