Describe Hunter's Algorithm for building decision trees. Build a decision out of the following (\"training\") dataset....

60.1K

Verified Solution

Question

Programming

Describe Hunter's Algorithm for building decision trees. Build adecision out of the following (\"training\") dataset. The goal is todetermine if a person is a defaulted borrower given values for thefirst four attributes. How do you deal with the attribute AnnualIncome with real values? For a person with values for the firstfour attributes 11, No, Single, 180K, is this person adefaulted borrower or not according to your newly built decisiontree?

ID Home Owner             Marital Status     Annual Income   Defaulted Borrower

1           Yes                      Single                 125K                   No

2           No                       Married              100K                   No

3           No                       Single                 70K                     No

4           Yes                      Married              120K                   No

5           No                       Divorced            95K                     Yes

6           No                       Married              60K                     No

7           Yes                      Divorced            220K                   No

8           No                       Single                 85K                     Yes

9           No                       Married              75K                     No

10           No                       Single                 90K                     Yes

Answer & Explanation Solved by verified expert
4.0 Ratings (447 Votes)
Hunters algorithm grows a decision tree in a recursive fashionby partitioning the trainig records into successively purersubsets Let Dt be the set of training records that reach a node tThe general recursive procedure is defined as belowIf Dt contains records that belong the same class yt then t isa leaf node labeled as ytIf Dt is an empty set then t is a leaf node labeled by thedefault class ydIf Dt contains records that belong to more than one class usean    See Answer
Get Answers to Unlimited Questions

Join us to gain access to millions of questions and expert answers. Enjoy exclusive benefits tailored just for you!

Membership Benefits:
  • Unlimited Question Access with detailed Answers
  • Zin AI - 3 Million Words
  • 10 Dall-E 3 Images
  • 20 Plot Generations
  • Conversation with Dialogue Memory
  • No Ads, Ever!
  • Access to Our Best AI Platform: Flex AI - Your personal assistant for all your inquiries!
Become a Member

Other questions asked by students