Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Construct a decision tree using Prolog. Use Any of the decision tree algorithms to build a decision tree for the given data Create rules from
Construct a decision tree using Prolog.
- Use Any of the decision tree algorithms to build a decision tree for the given data
- Create rules from the decision tree.
- Code the rules into a Prolog Knowledge base
- Get internet user data as input and find whether the internet user is a fair or unfair one.
Dataset
CT | CU | LT | TC | TS |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_1 | CU_range_3 | LT_range_4 | sport | trustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_4 | CU_range_1 | LT_range_2 | game | trustworthy |
CT_range_1 | CU_range_4 | LT_range_4 | ECommerce | untrustworthy |
CT_range_4 | CU_range_1 | LT_range_1 | game | trustworthy |
CT_range_1 | CU_range_4 | LT_range_4 | sport | trustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_1 | CU_range_5 | LT_range_4 | ECommerce | untrustworthy |
CT_range_3 | CU_range_1 | LT_range_4 | sport | trustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_1 | CU_range_3 | LT_range_4 | sport | trustworthy |
CT_range_2 | CU_range_1 | LT_range_4 | sport | trustworthy |
CT_range_1 | CU_range_4 | LT_range_4 | ECommerce | untrustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_4 | CU_range_1 | LT_range_1 | game | trustworthy |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_1 | CU_range_3 | LT_range_4 | sport | trustworthy |
CT_range_4 | CU_range_1 | LT_range_3 | game | trustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_2 | CU_range_1 | LT_range_2 | holiday | untrustworthy |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_4 | CU_range_1 | LT_range_3 | game | trustworthy |
CT_range_1 | CU_range_4 | LT_range_4 | ECommerce | untrustworthy |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_4 | CU_range_1 | LT_range_3 | game | trustworthy |
CT_range_1 | CU_range_1 | LT_range_1 | holiday | trustworthy |
CT_range_3 | CU_range_1 | LT_range_4 | sport | trustworthy |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started