1 Data Mining: Practical Machine Learning Tools and Techniques (Chapter 4) 07/20/06
Data Mining
Practical Machine Learning Tools and Techniques
Slides for Chapter 4 of Data Mining by I. H. Witten and E. Frank
2 Data Mining: Practical Machine Learning Tools and Techniques (Chapter 4) 07/20/06
Algorithms: The basic methods
- Inferring rudimentary rules
- Statistical modeling
- Constructing decision trees
- Constructing rules
- Association rule learning
- Linear models
- Instance-based learning
- Clustering
3 Data Mining: Practical Machine Learning Tools and Techniques (Chapter 4) 07/20/06
Simplicity first
✁ Simple algorithms often work very well! ✁ There are many kinds of simple structure, eg:z One attribute does all the work z All attributes contribute equally & independently z A weighted linear combination might do z Instance-based: use a few prototypes z Use simple logical rules
✁ Success of method depends on the domain4 Data Mining: Practical Machine Learning Tools and Techniques (Chapter 4) 07/20/06
Inferring rudimentary rules
✁ 1R: learns a 1-level decision treez I.e., rules that all test one particular attribute
✁ Basic versionz One branch for each value z Each branch assigns most frequent class z Error rate: proportion of instances that don’t
belong to the majority class of their corresponding branch
z Choose attribute with lowest error rate
(assumes nominal attributes)
5 Data Mining: Practical Machine Learning Tools and Techniques (Chapter 4) 07/20/06
Pseudo-code for 1R
For each attribute, For each value of the attribute, make a rule as follows: count how often each class appears find the most frequent class make the rule assign that class to this attribute-value Calculate the error rate of the rules Choose the rules with the smallest error rate
- Note: “missing” is treated as a separate attribute
value
6 Data Mining: Practical Machine Learning Tools and Techniques (Chapter 4) 07/20/06
Evaluating the weather attributes
3/ 6 True A No* 5/ 14 2/ 8 False A Yes Windy 1/ 7 Normal A Yes 4/ 14 3/ 7 High A No Humidity 5/ 14 4/ 14 Total errors 1/ 4 Cool A Yes 2/ 6 Mild A Yes 2/ 4 Hot A No* Temp 2/ 5 Rainy A Yes 0/ 4 Overcast A Yes 2/ 5 Sunny A No Outlook Errors Rules Attribute No True High Mild Rainy Yes False Normal Hot Overcast Yes True High Mild Overcast Yes True Normal Mild Sunny Yes False Normal Mild Rainy Yes False Normal Cool Sunny No False High Mild Sunny Yes True Normal Cool Overcast No True Normal Cool Rainy Yes False Normal Cool Rainy Yes False High Mild Rainy Yes False High Hot Overcast No True High Hot Sunny No False High Hot Sunny Play Windy Humidity Temp Outlook * indicates a tie