Weka Tutorial
Weka Tutorial
Svetlana S. Aksenova
[email protected]
2004
TABLE OF CONTENTS
1. INTRODUCTION......................................................................................................... 2
2. LAUNCHING WEKA EXPLORER .............................................................................. 2
3. PREPROCESSING DATA .......................................................................................... 3
3.1. FILE CONVERSION ................................................................................................... 4
3.2. OPENING FILE FROM A LOCAL FILE SYSTEM ................................................................ 5
3.3. OPENING FILE FROM A WEB SITE ............................................................................... 7
3.4. READING DATA FROM A DATABASE ............................................................................ 8
3.5. PREPROCESSING WINDOW ....................................................................................... 9
3.6. SETTING FILTERS .................................................................................................. 13
4. BUILDING “CLASSIFIERS”..................................................................................... 16
4.1. CHOOSING A CLASSIFIER ....................................................................................... 17
4.2. SETTING TEST OPTIONS ........................................................................................ 17
4.3. ANALYZING RESULTS ............................................................................................. 21
4.4. VISUALIZATION OF RESULTS ................................................................................... 22
Classification Exercise .............................................................................................. 25
5. CLUSTERING DATA ................................................................................................ 25
5.1. CHOOSING CLUSTERING SCHEME ........................................................................... 26
5.2. SETTING TEST OPTIONS ........................................................................................ 27
5.3. ANALYZING RESULTS ............................................................................................. 29
5.4. VISUALIZATION OF RESULTS ................................................................................... 30
Clustering Exercise ................................................................................................... 32
6. FINDING ASSOCIATIONS ....................................................................................... 32
6.1. CHOOSING ASSOCIATION SCHEME .......................................................................... 32
6.2. SETTING TEST OPTIONS ........................................................................................ 33
6.3. ANALYZING RESULTS ............................................................................................. 35
Association Rules Exercise ....................................................................................... 35
7. ATTRIBUTE SELECTION ........................................................................................ 35
7.1. SELECTING OPTIONS ............................................................................................. 36
7.2. ANALYZING RESULTS ............................................................................................. 37
7.3. VISUALIZING RESULTS ........................................................................................... 37
8. DATA VISUALIZATION............................................................................................ 39
8.1. CHANGING THE VIEW ............................................................................................. 40
8.2. SELECTING INSTANCES .......................................................................................... 41
9. CONCLUSION .......................................................................................................... 43
10. REFERENCES........................................................................................................ 44
1
1. Introduction
WEKA is a data mining system developed by the University of Waikato in New Zealand
that implements data mining algorithms. WEKA is a state-of-the-art facility for developing
machine learning (ML) techniques and their application to real-world data mining problems. It is
a collection of machine learning algorithms for data mining tasks. The algorithms are applied
directly to a dataset. WEKA implements algorithms for data preprocessing, classification,
regression, clustering, association rules; it also includes a visualization tools. The new machine
learning schemes can also be developed with this package. WEKA is open source software
issued under the GNU General Public License [3].
The goal of this Tutorial is to help you to learn WEKA Explorer. The tutorial will guide
you step by step through the analysis of a simple problem using WEKA Explorer preprocessing,
classification, clustering, association, attribute selection, and visualization tools. At the end of
each problem there is a representation of the results with explanations side by side. Each part is
concluded with the exercise for individual practice. By the time you reach the end of this tutorial,
you will be able to analyze your data with WEKA Explorer using various learning schemes and
interpret received results.
Before starting this tutorial, you should be familiar with data mining algorithms such as
C4.5 (C5), ID3, K-means, and Apriori. All working files are provided. For better performance, the
archive of all files used in this tutorial can be downloaded or copied from CD to your hard drive
as well as a printable version of the lessons. A trial version of Weka package can be
downloaded from the University of Waikato website at
http://www.cs.waikato.ac.nz/~ml/weka/index.html.
You can launch Weka from C:\Program Files directory, from your desktop selecting
icon, or from the Windows task bar ‘Start’ Æ ‘Programs’ Æ ‘Weka 3-4’. When ‘WEKA
GUI Chooser’ window appears on the screen, you can select one of the four options at the
bottom of the window [2]:
1. Simple CLI provides a simple command-line interface and allows direct execution of
Weka commands.
2
2. Explorer is an environment for exploring data.
For the exercises in this tutorial you will use ‘Explorer’. Click on ‘Explorer’ button in the ‘WEKA
GUI Chooser’ window.
3. Preprocessing Data
At the very top of the window, just below the title bar there is a row of tabs. Only the first
tab, ‘Preprocess’, is active at the moment because there is no dataset open. The first three
3
buttons at the top of the preprocess section enable you to load data into WEKA. Data can be
imported from a file in various formats: ARFF, CSV, C4.5, binary, it can also be read from a
URL or from an SQL database (using JDBC) [4]. The easiest and the most common way of
getting the data into WEKA is to store it as Attribute-Relation File Format (ARFF) file.
You’ve already been given “weather.arff” file for this exercise; therefore, you can skip
section 3.1 that will guide you through the file conversion.
We assume that all your data stored in a Microsoft Excel spreadsheet “weather.xls”.
WEKA expects the data file to be in Attribute-Relation File Format (ARFF) file. Before you apply
the algorithm to your data, you need to convert your data into comma-separated file into ARFF
format (into the file with .arff extension) [1]. To save you data in comma-separated format, select
the ‘Save As…’ menu item from Excel ‘File’ pull-down menu. In the ensuing dialog box select
‘CSV (Comma Delimited)’ from the file type pop-up menu, enter a name of the file, and click
‘Save’ button. Ignore all messages that appear by clicking ‘OK’. Open this file with Microsoft
Word. Your screen will look like the screen below.
4
The rows of the original spreadsheet are converted into lines of text where the elements are
separated from each other by commas. In this file you need to change the first line, which holds
the attribute names, into the header structure that makes up the beginning of an ARFF file. Add
a @relation tag with the dataset’s name, an @attribute tag with the attribute
information, and a @data tag as shown below.
Choose ‘Save As…’ from the ‘File‘ menu and specify ‘Text Only with Line Breaks’ as the file
type. Enter a file name and click ‘Save’ button. Rename the file to the file with extension .arff to
indicate that it is in ARFF format.
5
It brings up a dialog box allowing you to browse for the data file on the local file system, choose
“weather.arff” file.
Some databases have the ability to save data in CSV format. In this case, you can select CSV
file from the local filesystem. If you would like to convert this file into ARFF format, you can click
on ‘Save’ button. WEKA automatically creates ARFF file from your CSV file.
6
3.3. Opening file from a web site
A file can be opened from a website. Suppose, that “weather.arff” is on the following
website:
The URL of the web site in our example is http://gaia.ecs.csus.edu/~aksenovs/. It means that
the file is stored in this directory, just as in the case with your local file system. To open this file,
click on ‘Open URL…’ button, it brings up a dialog box requesting to enter source URL.
7
Enter the URL of the web site followed by the file name, in this example the URL is
http://gaia.ecs.csus.edu/~aksenovs/weather.arff, where weather.arff is the name of the file you
are trying to load from the website.
Data can also be read from an SQL database using JDBC. Click on ‘Open DB…’ button,
‘GenericObjectEditor’ appears on the screen.
To read data from a database, click on ‘Open’ button and select the database from a filesystem.
8
3.5. Preprocessing window
At the bottom of the window there is ‘Status’ box. The ‘Status’ box displays messages
that keep you informed about what is going on. For example, when you first opened the
‘Explorer’, the message says, “Welcome to the Weka Explorer”. When you loading
“weather.arff” file, the ‘Status’ box displays the message “Reading from file…”. Once the file is
loaded, the message in the ‘Status’ box changes to say “OK”. Right-click anywhere in ‘Status
box’, it brings up a menu with two options:
1. Available Memory that displays in the log and in ‘Status’ box the amount of
memory available to WEKA in bytes.
2. Run garbage collector that forces Java garbage collector to search for memory
that is no longer used, free this memory up and to allow this memory for new
tasks.
To the right of ‘Status box’ there is a ‘Log’ button that opens up the log. The log records
every action in WEKA and keeps a record of what has happened. Each line of text in the log
contains time of entry. For example, if the file you tried to open is not loaded, the log will have
record of the problem that occurred during opening.
To the right of the ‘Log’ button there is an image of a bird. The bird is WEKA status icon.
The number next to ‘X’ symbol indicates a number of concurrently running processes. When
you loading a file, the bird sits down that means that there are no processes running. The
number of processes besides symbol ‘X’ is zero that means that the system is idle. Later, in
classification problem, when generating result look at the bird, it gets up and start moving that
indicates that a process started. The number next to ‘X’ becomes 1 that means that there is one
process running, in this case calculation.
9
If the bird is standing and not moving for a long time, it means that something has gone wrong.
In this case you should restart WEKA Explorer.
Loading data
Lets load the data and look what is happening in the ‘Preprocess’ window.
The most common and easiest way of loading data into WEKA is from ARFF file, using ‘Open
file…’ button (section 3.2). Click on ‘Open file…’ button and choose “weather.arff” file from your
local filesystem. Note, the data can be loaded from CSV file as well because some databases
have the ability to convert data only into CSV format.
Once the data is loaded, WEKA recognizes attributes that are shown in the ‘Attribute’ window.
Left panel of ‘Preprocess’ window shows the list of recognized attributes:
No. is a number that identifies the order of the attribute as they are in data file,
Selection tick boxes allow you to select the attributes for working relation,
Name is a name of an attribute as it was declared in the data file.
The ‘Current relation’ box above ‘Attribute’ box displays the base relation (table) name and the
current working relation (which are initially the same) - “weather”, the number of instances - 14
and the number of attributes - 5.
During the scan of the data, WEKA computes some basic statistics on each attribute. The
following statistics are shown in ‘Selected attribute’ box on the right panel of ‘Preprocess’
window:
10
An attribute can be deleted from the ‘Attributes’ window. Highlight an attribute you would like to
delete and hit Delete button on your keyboard.
By clicking on an attribute, you can see the basic statistics on that attribute. The frequency for
each attribute value is shown for categorical attributes. Min, max, mean, standard deviation
(StdDev) is shown for continuous attributes.
Outlook is nominal. Therefore, you can see the following frequency statistics for this attribute in
the ‘Selected attributes’ window:
Missing = 0 means that the attribute is specified for all instances (no missing values),
Distinct = 3 means that Outlook has three different values: sunny, overcast, rainy, and
Unique = 0 means that other instances do not have the same value as Outlook has.
Just below these values there is a table displaying count of instances of the attribute Outlook.
As you can see, there are three values: sunny with 5 instances, overcast with 4 instances, and
rainy with 5 instances. These numbers match the numbers of instances in the base relation and
table “weather.xls”.
11
Temperature is a numeric value; therefore, you can see min, max, means, and standard
deviation in ‘Selected Attribute’ window.
Missing = 0 means that the attribute is specified for all instances (no missing values),
Distinct = 12 means that Temperature has twelve different values, and
Unique = 10 means that other attributes or instances have the same 10 value as Temperature
has.
Temperature is a Numeric value; therefore, you can see the statistics describing the distribution
of values in the data - Minimum, Maximum, Mean and Standard Deviation. Minimum = 64 is the
lowest temperature, Maximum = 85 is the highest temperature, mean and standard deviation.
Compare the result with the attribute table “weather.xls”; the numbers in WEKA match the
numbers in the table.
You can select a class in the ‘Class’ pull-down box. The last attribute in the ‘Attributes’
window is the default class selected in the ‘Class’ pull-down box.
12
You can Visualize the attributes based on selected class. One way is to visualize selected
attribute based on class selected in the ‘Class’ pull-down window, or visualize all attributes by
clicking on ‘Visualize All’ button.
Pre-processing tools in WEKA are called “filters”. WEKA contains filters for
discretization, normalization, resampling, attribute selection, transformation and combination of
attributes [4]. Some techniques, such as association rule mining, can only be performed on
categorical data. This requires performing discretization on numeric or continuous attributes [5].
For classification example you do not need to transform the data. For you practice, suppose you
need to perform a test on categorical data. There are two attributes that need to be converted:
‘temperature’ and ‘humidity’. In other words, you will keep all of the values for these attributes in
the data. This means you can discretize by removing the keyword "numeric" as the type for the
13
‘temperature’ attribute and replace it with the set of “nominal” values. You can do this by
applying a filter.
In ‘Filters’ window, click on the ‘Choose’ button.
This will show pull-down menu with a list of available filters. Select Supervised Æ Attribute Æ
Discretize and click on ‘Apply’ button. The filter will convert Numeric values into Nominal.
When filter is chosen, the fields in the window changes to reflect available options.
14
As you can see, there is no change in the value Outlook. Select value Temperature, look at the
‘Selected attribute’ box, the ‘Type’ field shows that the attribute type has changed from Numeric
to Nominal. The list has changed as well: instead of statistical values there is count of instances,
and the count of it is 14 that means that there are 14 instances of the value Temperature.
Note, when you right-click on filter, a ‘GenericObjectEditor’ dialog box comes up on your screen.
The box lets you to choose the filter configuration options. The same box can be used for
classifiers, clusterers and association rules.
Clicking on ‘More’ button brings up an ‘Information’ window describing what the different options
can do.
15
At the bottom of the editor window there are four buttons. ‘Open’ and ‘Save’ buttons allow you to
save object configurations for future use. ‘Cancel’ button allows you to exit without saving
changes. Once you have made changes, click ‘OK’ to apply them.
4. Building “Classifiers”
Classifiers in WEKA are the models for predicting nominal or numeric quantities. The
learning schemes available in WEKA include decision trees and lists, instance-based classifiers,
support vector machines, multi-layer perceptrons, logistic regression, and bayes’ nets. “Meta”-
classifiers include bagging, boosting, stacking, error-correcting output codes, and locally
weighted learning [4].
Once you have your data set loaded, all the tabs are available to you. Click on the ‘Classify’ tab.
16
Now you can start analyzing the data using the provided algorithms. In this exercise you will
analyze the data with C4.5 algorithm using J48, WEKA’s implementation of decision tree
learner. The sample data used in this exercise is the weather data from the file “weather.arff”.
Since C4.5 algorithm can handle numeric attributes, in contrast to the ID3 algorithm from which
C4.5 has evolved, there is no need to discretize any of the attributes. Before you start this
exercise, make sure you do not have filters set in the ‘Preprocess’ window. Filter exercise in
section 3.6 was just a practice.
Click on ‘Choose’ button in the ‘Classifier’ box just below the tabs and select C4.5
classifier WEKA Æ Classifiers Æ Trees Æ J48.
Before you run the classification algorithm, you need to set test options. Set test options in
the ‘Test options’ box. The test options that available to you are [2]:
17
1. Use training set. Evaluates the classifier on haw well it predicts the class of the
instances it was trained on.
2. Supplied test set. Evaluates the classifier on how well it predicts the class of a set of
instances loaded from a file. Clicking on the ‘Set…’ button brings up a dialog allowing
you to choose the file to test on.
3. Cross-validation. Evaluates the classifier by cross-validation, using the number of folds
that are entered in the ‘Folds’ text field.
4. Percentage split. Evaluates the classifier on how well it predicts a certain percentage of
the data, which is held out for testing. The amount of data held out depends on the value
entered in the ‘%’ field.
In this exercise you will evaluate classifier based on how well it predicts 66% of the
tested data. Check ‘Percentage split’ radio-button and keep it as default 66%. Click on ‘More
options…’ button.
Identify what is included into the output. In the ‘Classifier evaluation options’ make sure that the
following options are checked [2]:
1. Output model. The output is the classification model on the full training set, so that it
can be viewed, visualized, etc.
2. Output per-class stats. The precision/recall and true/false statistics for each class
output.
3. Output confusion matrix. The confusion matrix of the classifier’s predictions is included
in the output.
4. Store predictions for visualization. The classifier’s predictions are remembered so
that they can be visualized.
5. Set ‘Random seed for Xval / % Split’ to 1. This specifies the random seed used when
randomizing the data before it is divided up for evaluation purposes.
18
The remaining options that you do not use in this exercise but that available to you are:
Once the options have been specified, you can run the classification algorithm. Click on
‘Start’ button to start the learning process. You can stop learning process at any time by clicking
on ‘Stop’ button.
When training set is complete, the ‘Classifier’ output area on the right panel of ‘Classify’
window is filled with text describing the results of training and testing. A new entry appears in
the ‘Result list’ box on the left panel of ‘Classify’ window.
19
20
4.3. Analyzing Results
21
4.4. Visualization of Results
WEKA lets you to see a graphical representation of the classification tree. Right-click on the
entry in ‘Result list’ for which you would like to visualize a tree. It invokes a menu containing the
following items:
Select the item ‘Visualize tree’; a new window comes up to the screen displaying the tree.
22
WEKA also lets you to visualize classification errors. Right-click on the entry in ‘Result list’ again
and select ‘Visualize classifier errors’ from the menu:
23
On the ‘Weka Classifier Visualize’ window, beneath the X-axis selector there is a drop-
down list, ‘Colour’, for choosing the color scheme. This allows you to choose the color of points
based on the attribute selected. Below the plot area, there is a legend that describes what
values the colors correspond to. In your example, red represents ‘no’, while blue represents
‘yes’. For better visibility you should change the color of label ‘yes’. Left-click on ‘yes’ in the
‘Class colour’ box and select lighter color from the color palette.
To the right of the plot area there are series of horizontal strips. Each strip represents an
attribute, and the dots within it show the distribution values of the attribute. You can choose
what axes are used in the main graph by clicking on these strips (left-click changes X-axis, right-
click changes Y-axis).
Change X - axis to ‘Outlook’ attribute and Y - axis to ‘Play’. The instances are spread out in the
plot area and concentration points are not visible. Keep sliding ‘Jitter’, a random displacement
given to all points in the plot, to the right, until you can spot concentration points.
On the plot you can see the results of classification. Correctly classified instances are
represented as crosses, incorrectly classified once represented as squares. In this example in
the left lower corner you can see blue cross indicating correctly classified instance: if Outlook =
‘sunny’ Æ play = ‘yes’.
24
Look to the upper left corner of the graph, there are two red squares in this corner. The square
represents incorrectly classified instance. The following is not correct: if Outlook = ‘sunny’ Æ
play = ‘no’.
Classification Exercise
Use ID3 algorithm to classify weather data from the “weather.arff” file. Perform initial
preprocessing and create a version of the initial dataset in which all numeric attributes should be
converted to categorical data.
5. Clustering Data
WEKA contains “clusterers” for finding groups of similar instances in a dataset. The
clustering schemes available in WEKA are k-Means, EM, Cobweb, X-means, FarthestFirst.
Clusters can be visualized and compared to “true” clusters (if given). Evaluation is based on log
likelihood if clustering scheme produces a probability distribution [4].
For this exercise we will use customer data [6] that is contained in “customers.arff” file
and analyze it with k-means clustering scheme.
An international online catalog company wishes to group its customers based on common
features. Company management does not have any predefined labels for these groups. Based
on the outcome of the grouping, they will target marketing and advertising campaigns to the
different groups. The information they have about the customers includes income, age, number
of children, marital status, and education. For our exercise we will use a part of the database for
customers in US. Depending on the type of advertising, not all attributes are important. For
example, suppose the advertising is for a special sale on children’s clothes. We will target the
advertising only to the persons with young children. The clustering that you will perform in this
exercise is as follows. The first group of people has young children and a high school degree,
the second group does not have children but has high school degree. The third group has both
children and a college degree. The fourth group has higher income and at least a college
degree. The fifth group has children and higher degree. Different clustering would have been
found by examining either age or marital status.
In ‘Preprocess’ window click on ‘Open file…’ button and select “customers.arff” file. Click
‘Cluster’ tab at the top of WEKA Explorer window.
25
5.1. Choosing Clustering Scheme
In the ‘Clusterer’ box click on ‘Choose’ button. In pull-down menu select WEKA Æ
Clusterers, and select the cluster scheme ‘SimpleKMeans’. Some implementations of K-means
only allow numerical values for attributes; therefore, we do not need to use a filter.
26
5.2. Setting Test Options
Before you run the clustering algorithm, you need to choose ‘Cluster mode’. Click on
‘Classes to cluster evaluation’ radio-button in ‘Cluster mode’ box and select ‘marital_status’ in
the pull-down box below. It means that you will compare how well the chosen clusters match up
with a pre-assigned class (‘marital_status’) in the data.
Once the options have been specified, you can run the clustering algorithm. Click on the ‘Start’
button to execute the algorithm.
27
When training set is complete, the ‘Cluster’ output area on the right panel of ‘Cluster’
window is filled with text describing the results of training and testing. A new entry appears in
the ‘Result list’ box on the left of the result. These behave just like their classification
counterparts.
28
5.3. Analyzing Results
=== Run information ===
Number of iterations: 4
Within cluster sum of squared errors: 3.449558299853908
Cluster centroids: The clustering model shows the centroid of each cluster and
statistics on the number and percentage of instances assigned
Cluster 0
Mean/Mode: 22500 30 3 high_school to different clusters. Cluster centroids are the mean vectors for
Std Devs: 3535.5339 7.0711 N/A N/A each cluster; so, each dimension value and the centroid
Cluster 1 represents the mean value for that dimension in the cluster.
Mean/Mode: 145000 37.5 0 graduate_school
Std Devs: 77781.7459 10.6066 N/A N/A Thus, centroids can be used to characterize the clusters.
Cluster 2 WEKA generated clusters are:
Mean/Mode: 85000 55 0 college Cluster 0 shows that this is a segment of cases representing 25
Std Devs: 21213.2034 7.0711 N/A N/A
Cluster 3 and 35 year old, either single or divorced, people with income
Mean/Mode: 15000 25 1 high_school $22,500 in average, who have 3 children.
Std Devs: 0 0 N/A N/A In cluster 1 there are 30 and 45 year old married people who
Cluster 4
Mean/Mode: 25000 30 0 high_school do not have children.
Std Devs: 7071.0678 14.1421 N/A N/A In cluster 2 there are 50 and 60 year old married and divorced
people with higher income college degree and no children.
=== Evaluation on training set ===
Cluster 3 represents 25 year old married people with one child
kMeans lower income and high school degree.
====== Cluster 4 represents 20 and 40 year old single and divorced
Number of iterations: 4 people with lower income, high school degree and no children.
Within cluster sum of squared errors: 6.899116599707816
Cluster centroids:
Cluster 0
Mean/Mode: 22500 30 3 high_school
Std Devs: 3535.5339 7.0711 N/A N/A
Cluster 1 Sum of errors within the clusters is recalculated.
Mean/Mode: 145000 37.5 0 graduate_school
Std Devs: 77781.7459 10.6066 N/A N/A
Cluster 2
Mean/Mode: 85000 55 0 college
Std Devs: 21213.2034 7.0711 N/A N/A
Cluster 3
Mean/Mode: 15000 25 1 high_school
Std Devs: 0 0 N/A N/A
Cluster 4
Mean/Mode: 25000 30 0 high_school
Std Devs: 7071.0678 14.1421 N/A N/A
Clustered Instances
29
5.4. Visualization of Results
On the ‘Weka Clusterer Visualize’ window, beneath the X-axis selector there is a drop-
down list, ‘Colour’, for choosing the color scheme. This allows you to choose the color of points
based on the attribute selected. Below the plot area, there is a legend that describes what
values the colors correspond to. In your example, seven different colors represent seven
numbers (number of children). For better visibility you should change the color of label ‘3’. Left-
click on ‘3’ in the ‘Class colour’ box and select lighter color from the color palette.
To the right of the plot area there are series of horizontal strips. Each strip represents an
attribute, and the dots within it show the distribution values of the attribute. You can choose
what axes are used in the main graph by clicking on these strips (left-click changes X-axis, right-
30
click changes Y-axis). Set X - axis to ‘Cluster’ attribute, Y - axis to ‘Age’. Select ‘Children’ as the
color dimension. You can see the result in a visual rendering of the relationship within each
cluster. For instance, you can note that ‘cluster 0’ represents a group of people of age 25 and
35, who have 3 children, ‘cluster 1’ represents a group of people of age 30 and 45 who do not
have children, ‘cluster 2’ represents 50 and 60 year old people with no children, ‘cluster 3’
represents 25 year old married people with one child, and ‘cluster 4’ represents 20 and 40 year
old people without children.
The initially correctly clustered instances are represented by crosses, incorrectly
clustered once represented as squares. By changing the color dimension to other attributes, you
can see their distribution within each of the clusters.
You may want to save the resulting data set, which included each instance along with its
assigned cluster. To do so, click ‘Save’ button in the visualization window and save the result as
the file “customers_kmeans.arff”.
As you can see, there is a new attribute appeared in the file – ‘cluster’ that was added by
WEKA. This attribute represents the custering done by WEKA.
31
Clustering Exercise
Use k-means algorithm to bank data from the “bank.arff” file. Perform initial preprocessing and
create a version of the initial data set in which the ID field should be removed and the "children"
attribute should be converted to categorical data.
6. Finding Associations
WEKA contains an implementation of the Apriori algorithm for learning association rules.
This is the only currently available scheme for learning associations in WEKA. It works only with
discrete data and will identify statistical dependencies between groups of attributes, milk, peanut
butter and bread, jelly, beer and diapers, with confidence 40% and support 30%. Apriori can
compute all rules that have a given minimum support and exceed a given confidence.
Click ‘Associate’ tab at the top of ‘WEKA Explorer’ window. It brings up interface for the
Apriori algorithm.
The association rule scheme cannot handle numeric values; therefore, for this exercise you will
use grocery store data from the “grocery.arff” file where all values are nominal. Go back to
‘Preprocessing’ section described in part 4 and open “grocery.arff” file.
32
6.2. Setting Test Options
Check the text field in the ‘Associator’ box at the top of the window. As you can see,
there are no other associators to choose and no extra options for testing the learning scheme.
Right-click on the ‘Associator’ box, ‘GenericObjectEditor’ appears on your screen. In the dialog
box, change the value in ‘minMetric’ to 0.4 for confidence = 40%. Make sure that the default
value of rules is set to 100. The upper bound for minimum support ‘upperBoundMinSupport’
should be set to 1.0 (100%) and ‘lowerBoundMinSupport’ to 0.1. Apriori in WEKA starts with the
upper bound support and incrementally decreases support (by delta increments, which by
default is set to 0.05 or 5%). The algorithm halts when either the specified number of rules is
generated, or the lower bound for minimum support is reached. The ‘significanceLevel’ testing
option is only applicable in the case of confidence and is (-1.0) by default (not used).
33
Once the options have been specified, you can run Apriori algorithm. Click on the ‘Start’ button
to execute the algorithm.
34
6.3. Analyzing Results
7. Attribute Selection
Attribute selection searches through all possible combinations of attributes in the data
and finds which subset of attributes works best for prediction [1]. Attribute selection methods
contain two parts: a search method such as best-first, forward selection, random, exhaustive,
genetic algorithm, ranking, and an evaluation method such as correlation-based, wrapper,
information gain, chi-squared. Attribute selection mechanism is very flexible - WEKA allows
(almost) arbitrary combinations of the two methods [4].
For this exercise you will use weather data from the “weather.arff” file. To begin an
attribute selection, click ‘Select attributes’ tab.
35
7.1. Selecting Options
To search through all possible combinations of attributes in the data and find which
subset of attributes works best for prediction, make sure that you set up attribute evaluator to
‘CfsSubsetEval’ and a search method to ‘BestFirst’. The evaluator will determine what method
to use to assign a worth to each subset of attributes. The search method will determine what
style of search to perform.
The options that you can set for selection in the ‘Attribute Selection Mode’ box are [2]:
1. Use full training set. The worth of the attribute subset is determined using the
full set of training data.
2. Cross-validation. The worth of the attribute subset is determined by a process
of cross-validation. The ‘Fold’ and ‘Seed’ fields set the number of folds to use
and the random seed used when shuffling the data.
Specify which attribute to treat as the class in the drop-down box below the test options.
Once all the test options are set, you can start the attribute selection process by clicking
on ‘Start’ button.
36
When it is finished, the results of selection are shown on the right part of the window and entry
is added to the ‘Result list’.
Search Method:
Best first.
Start set: no attributes
Search direction: forward
Stale search after 5 node expansions
Total number of subsets evaluated: 11 The search method selected is the Best Fit. The software
Merit of best subset found: 0.196 started search with no attributes, and it is forward search. We
evaluated 11 subsets and the merit of the best subset is 0.196.
Attribute Subset Evaluator (supervised, Class (nominal): 5
play): The attribute evaluator used is CFS Subset Evaluator. We used
CFS Subset Evaluator supervised learning with labels in the attribute ‘play’.
Selected attributes: 1 : 1 The selected attribute for prediction is ‘outlook’.
outlook
Right-click on the entry in the ‘Result list’. From the pull-down menu select ‘Visualize
reduced data’.
37
In the window below you can see a prediction for ‘play’ depending on the ‘outlook’. For better
visibility the color of label ‘yes’ was changed to the lighter one and ‘Jitter’ was slid to the right to
see concentration points.
In the WEKA visualization window, beneath the X-axis selector there is a drop-down list,
‘Colour’, for choosing the color scheme. This allows you to choose the color of points based on
the attribute selected. Below the plot area, there is a legend that describes what values the
colors correspond to. In your example, red represents ‘no’, while blue represents ‘yes’. For
better visibility you should change the color of label ‘yes’. Left-click on ‘yes’ in the ‘Class colour’
box and select lighter color from the color palette.
To the right of the plot area there are series of horizontal strips. Each strip represents an
attribute, and the dots within it show the distribution values of the attribute. You can choose
what axes are used in the main graph by clicking on these strips (left-click changes X-axis, right-
click changes Y-axis).
Change X - axis to ‘Outlook’ attribute and Y - axis to ‘Play’. The instances are spread out in the
plot area and concentration points are not visible. Keep sliding ‘Jitter’, a random displacement
given to all points in the plot, to the right, until you can spot concentration points.
The prediction is as follows: if the ‘outlook’ is sunny, play = ‘yes’, and if the ‘outlook’ is ‘rainy’,
play = ‘no’, which is very likely to happen. There are few instances displayed in the window that
38
may or may not happen: if ‘outlook’ = ‘sunny’, ‘play’ = ‘no’ and if ‘outlook’ = ‘rainy’, ‘play’ = ‘yes’.
Note, in this section there are no correcty or incorrectly classified symbols in the graph because
the result is based on probability.
8. Data Visualization
WEKA’s visualization allows you to visualize a 2-D plot of the current working relation.
Visualization is very useful in practice, it helps to determine difficulty of the learning problem.
WEKA can visualize single attributes (1-d) and pairs of attributes (2-d), rotate 3-d visualizations
(Xgobi-style). WEKA has “Jitter” option to deal with nominal attributes and to detect “hidden”
data points [4].
To open Visualization screen, click ‘Visualize’ tab.
Select a square that corresponds to the attributes you would like to visualize. For example, let’s
choose ‘outlook’ for X – axis and ‘play’ for Y – axis. Click anywhere inside the square that
corresponds to ‘play on the left and ‘outlook’ at the top.
39
A ‘Visualizing weather’ window appears on the screen.
In the visualization window, beneath the X-axis selector there is a drop-down list,
‘Colour’, for choosing the color scheme. This allows you to choose the color of points based on
the attribute selected. Below the plot area, there is a legend that describes what values the
colors correspond to. In your example, red represents ‘no’, while blue represents ‘yes’. For
better visibility you should change the color of label ‘yes’. Left-click on ‘yes’ in the ‘Class colour’
box and select lighter color from the color palette.
To the right of the plot area there are series of horizontal strips. Each strip represents an
attribute, and the dots within it show the distribution values of the attribute. You can choose
what axes are used in the main graph by clicking on these strips (left-click changes X-axis, right-
click changes Y-axis).
The software sets X - axis to ‘Outlook’ attribute and Y - axis to ‘Play’. The instances are spread
out in the plot area and concentration points are not visible. Keep sliding ‘Jitter’, a random
displacement given to all points in the plot, to the right, until you can spot concentration points.
40
The results are shown below. But on this screen we changed ‘Colour’ to temperature.
Besides ‘outlook’ and ‘play’, this allows you to see the ‘temperature’ corresponding to the
‘outlook’. It will affect your result because if you see ‘outlook’ = ‘sunny’ and ‘play’ = ‘no’ to
explain the result, you need to see the ‘temperature’ – if it is too hot, you do not want to play.
Change ‘Colour’ to ‘windy’, you can see that if it is windy, you do not want to play as well.
Sometimes it is helpful to select a subset of the data using visualization tool. A special
case is the ‘UserClassifier’, which lets you to build your own classifier by interactively selecting
instances. Below the Y – axis there is a drop-down list that allows you to choose a selection
method. A group of points on the graph can be selected in four ways [2]:
41
3. Polygon. You can select several points by building a free-form polygon. Left-click on
the graph to add vertices to the polygon and right-click to complete it.
4. Polyline. To distinguish the points on one side from the once on another, you can build
a polyline. Left-click on the graph to add vertices to the polyline and right-click to finish.
42
Once the area has been selected it is colored gray. You can click on ‘Submit’ button to
remove the points outside the gray area. To erase selected (gray) area without affecting the
graph, click on ‘Clear’ button. When you clicked on ‘Submit’ button, it changes to ‘Reset’ button.
By clicking on ‘Reset’ button, you can undo all changes and restore the original graph. To save
all your currently visible instances to ARFF file, click on ‘Save’ button.
9. Conclusion
This concludes WEKA Explorer Tutorial. You have covered a lot of material since the
Tutorial Introduction. There is a lot more to learn about WEKA than what you have covered in
these seven exercises. But you have already learned enough to be able to analyze your data
using preprocessing, classification, clustering, and association rule tools. You have learned how
to visualize the result and select attributes. This knowledge will prove invaluable to you. If you
plan to do any complicated data analysis, which require software flexibility, I recommend you to
use WEKA’s ‘Simple CLI’ interface. So, are you ready yet? Probably not. You have few new
tools, but practice makes perfect. Good luck with your data analysis.
43
10. References
1. Witten, E. Frank, Data Mining, Practical Machine Learning Tools and Techniques with Java
Implementation, Morgan Kaufmann Publishers, 2000.
2. R. Kirkby, WEKA Explorer User Guide for version 3-3-4, University of Weikato, 2002.
3. Weka Machine Learning Project, http://www.cs.waikato.ac.nz/~ml/index.html.
4. E.Frank, Machine Learning With WEKA, University of Waikato, New Zealand.
5. B. Mobasher, Data Preparation and Mining with WEKA,
http://maya.cs.depaul.edu/~classes/ect584/WEKA/association_rules.html, DePaul
University, 2003.
6. M. H. Dunham, Data Mining, Introductory and Advanced Topics, Prentice Hall, 2002.
44