ML::AssociationRuleLearning
Raku ML::AssociationRuleLearning
This repository has the code of a Raku package for Association Rule Learning (ARL) functions, [Wk1].
ARL framework includes the algorithms Apriori and Eclat, and the measures confidence, lift, and conviction.
For computational introduction to ARL utilization (in Mathematica) see the article "Movie genre associations", [AA1].
The examples below use the packages "Data::Generators", "Data::Reshapers", and "Data::Summarizers", described in the article "Introduction to data wrangling with Raku", [AA2].
Installation
Via zef-ecosystem:
zef install ML::AssociationRuleLearning
From GitHub:
zef install https://github.com/antononcube/Raku-ML-AssociationRuleLearning
Frequent sets finding
Here we get the Titanic dataset (from "Data::Reshapers") and summarize it:
use Data::Reshapers;
use Data::Summarizers;
my @dsTitanic = get-titanic-dataset();
records-summary(@dsTitanic);
# +---------------+-------------------+----------------+----------------+-----------------+
# | passengerSex | passengerSurvival | passengerClass | passengerAge | id |
# +---------------+-------------------+----------------+----------------+-----------------+
# | male => 843 | died => 809 | 3rd => 709 | 20 => 334 | 607 => 1 |
# | female => 466 | survived => 500 | 1st => 323 | -1 => 263 | 849 => 1 |
# | | | 2nd => 277 | 30 => 258 | 519 => 1 |
# | | | | 40 => 190 | 724 => 1 |
# | | | | 50 => 88 | 189 => 1 |
# | | | | 60 => 57 | 948 => 1 |
# | | | | 0 => 56 | 287 => 1 |
# | | | | (Other) => 63 | (Other) => 1302 |
# +---------------+-------------------+----------------+----------------+-----------------+
Problem: Find all combinations of values of the variables "passengerAge", "passengerClass", "passengerSex", and "passengerSurvival" that appear more than 200 times in the Titanic dataset.
Here is how we use the function frequent-sets
to give an answer:
use ML::AssociationRuleLearning;
my @freqSets = frequent-sets(@dsTitanic, min-support => 200, min-number-of-items => 2, max-number-of-items => Inf):counts;
@freqSets.elems
# 11
The function frequent-sets
returns the frequent sets together with their support.
Here we tabulate the result:
say to-pretty-table(@freqSets.map({ %( Frequent-set => $_.key.join(' '), Count => $_.value) }), align => 'l');
# +-------+-------------------------------------------------------------+
# | Count | Frequent-set |
# +-------+-------------------------------------------------------------+
# | 208 | passengerAge:-1 passengerClass:3rd |
# | 206 | passengerAge:20 passengerClass:3rd |
# | 207 | passengerAge:20 passengerSex:male |
# | 207 | passengerAge:20 passengerSurvival:died |
# | 200 | passengerClass:1st passengerSurvival:survived |
# | 216 | passengerClass:3rd passengerSex:female |
# | 493 | passengerClass:3rd passengerSex:male |
# | 418 | passengerClass:3rd passengerSex:male passengerSurvival:died |
# | 528 | passengerClass:3rd passengerSurvival:died |
# | 339 | passengerSex:female passengerSurvival:survived |
# | 682 | passengerSex:male passengerSurvival:died |
# +-------+-------------------------------------------------------------+
We can verify the result by looking into these group counts, [AA2]:
my $obj = group-by( @dsTitanic, <passengerClass passengerSex>);
.say for $obj>>.elems.grep({ $_.value >= 200 });
$obj = group-by( @dsTitanic, <passengerClass passengerSurvival passengerSex>);
.say for $obj>>.elems.grep({ $_.value >= 200 });
# 3rd.female => 216
# 3rd.male => 493
# 3rd.died.male => 418
Or these contingency tables:
my $obj = group-by( @dsTitanic, "passengerClass") ;
$obj = $obj.map({ $_.key => cross-tabulate( $_.value, "passengerSex", "passengerSurvival" ) });
.say for $obj.Array;
# 2nd => {female => {died => 12, survived => 94}, male => {died => 146, survived => 25}}
# 1st => {female => {died => 5, survived => 139}, male => {died => 118, survived => 61}}
# 3rd => {female => {died => 110, survived => 106}, male => {died => 418, survived => 75}}
Remark: For datasets -- i.e. arrays of hashes -- frequent-sets
preprocesses the data by concatenating
column names with corresponding column values. This is done in order to prevent "collisions" of same values
coming from different columns. If that concatenation is not desired then manual preprocessing like this can be used:
@dsTitanic.map({ $_.values.List }).Array
Remark: frequent-sets
's argument min-support
can take both integers greater than 1 and frequencies between 0 and 1.
(If an integer greater than one is given, then the corresponding frequency is derived.)
Remark: By default frequent-sets
uses the Eclat algorithm. The functions apriori
and eclat
call frequent-sets
with the option settings method=>'Apriori'
and method=>'Eclat'
respectively.
Association rules finding
Here we find association rules with min support 0.3 and min confidence 0.7:
association-rules(@dsTitanic, min-support => 0.3, min-confidence => 0.7)
==> to-pretty-table
# +----------+------------+-------------------------------------------+----------+------------+------------------------+----------+-------+
# | support | conviction | antecendent | leverage | confidence | consequent | lift | count |
# +----------+------------+-------------------------------------------+----------+------------+------------------------+----------+-------+
# | 0.403361 | 1.496229 | passengerClass:3rd | 0.068615 | 0.744711 | passengerSurvival:died | 1.204977 | 528 |
# | 0.521008 | 2.000009 | passengerSex:male | 0.122996 | 0.809015 | passengerSurvival:died | 1.309025 | 682 |
# | 0.521008 | 2.267729 | passengerSurvival:died | 0.122996 | 0.843016 | passengerSex:male | 1.309025 | 682 |
# | 0.319328 | 2.510823 | passengerClass:3rd passengerSex:male | 0.086564 | 0.847870 | passengerSurvival:died | 1.371894 | 418 |
# | 0.319328 | 1.708785 | passengerClass:3rd passengerSurvival:died | 0.059562 | 0.791667 | passengerSex:male | 1.229290 | 418 |
# +----------+------------+-------------------------------------------+----------+------------+------------------------+----------+-------+
Reusing found frequent sets
The function frequent-sets
takes the adverb ":object" that makes frequent-sets
return an object of type
ML::AssociationRuleLearning::Apriori
or ML::AssociationRuleLearning::Eclat
,
which can be "pipelined" to find association rules.
Here we find frequent sets, return the corresponding object, and retrieve the result:
my $eclatObj = frequent-sets(@dsTitanic.map({ $_.values.List }).Array, min-support => 0.12, min-number-of-items => 2, max-number-of-items => 6):object;
$eclatObj.result.elems
# 23
Here we find association rules and pretty-print them:
$eclatObj.find-rules(min-confidence=>0.7)
==> to-pretty-table
# +------------+-------+------------+----------+----------+------------+-------------+----------+
# | consequent | count | confidence | lift | support | conviction | antecendent | leverage |
# +------------+-------+------------+----------+----------+------------+-------------+----------+
# | 3rd | 208 | 0.790875 | 1.460162 | 0.158900 | 2.191819 | -1 | 0.050076 |
# | died | 190 | 0.722433 | 1.168931 | 0.145149 | 1.376142 | -1 | 0.020977 |
# | died | 528 | 0.744711 | 1.204977 | 0.403361 | 1.496229 | 3rd | 0.068615 |
# | died | 158 | 0.759615 | 1.229093 | 0.120703 | 1.588999 | -1 3rd | 0.022498 |
# | 3rd | 158 | 0.831579 | 1.535313 | 0.120703 | 2.721543 | -1 died | 0.042085 |
# | male | 185 | 0.703422 | 1.092265 | 0.141329 | 1.200349 | -1 | 0.011938 |
# | male | 682 | 0.843016 | 1.309025 | 0.521008 | 2.267729 | died | 0.122996 |
# | died | 682 | 0.809015 | 1.309025 | 0.521008 | 2.000009 | male | 0.122996 |
# | male | 159 | 0.836842 | 1.299438 | 0.121467 | 2.181917 | -1 died | 0.027990 |
# | died | 159 | 0.859459 | 1.390646 | 0.121467 | 2.717870 | -1 male | 0.034121 |
# | male | 176 | 0.846154 | 1.313897 | 0.134454 | 2.313980 | 20 died | 0.032122 |
# | died | 176 | 0.846154 | 1.369117 | 0.134454 | 2.482811 | 20 male | 0.036249 |
# | male | 418 | 0.791667 | 1.229290 | 0.319328 | 1.708785 | 3rd died | 0.059562 |
# | died | 418 | 0.847870 | 1.371894 | 0.319328 | 2.510823 | 3rd male | 0.086564 |
# | survived | 339 | 0.727468 | 1.904511 | 0.258976 | 2.267729 | female | 0.122996 |
# +------------+-------+------------+----------+----------+------------+-------------+----------+
Remark: Note that because of the specified min confidence, the number of association rules is "contained" --
a (much) larger number of rules would be produced with, say, min-confidence=>0.2
.
Implementation considerations
UML diagram
Here is a UML diagram that shows package's structure:
image ./resources/class-diagram.png not found
The
PlantUML spec
and
diagram
were obtained with the CLI script to-uml-spec
of the package "UML::Translators", [AAp6].
Here we get the PlantUML spec:
to-uml-spec ML::AssociationRuleLearning > ./resources/class-diagram.puml
Here get the diagram:
to-uml-spec ML::AssociationRuleLearning | java -jar ~/PlantUML/plantuml-1.2022.5.jar -pipe > ./resources/class-diagram.png
Remark: Maybe it is a good idea to have an abstract class named, say,
ML::AssociationRuleLearning::AbstractFinder
that is a parent of both
ML::AssociationRuleLearning::Apriori
and ML::AssociationRuleLearning::Eclat
,
but I have not found to be necessary. (At this point of development.)
Eclat
We can say that Eclat uses a "vertical database representation" of the transactions.
Eclat is based on Raku's sets, bags, and mixes functionalities.
Eclat represents the transactions as a hash of sets:
The keys of the hash are items
The elements of the sets are transaction identifiers.
(In other words, for each item an inverse index is made.)
This representation allows for quick calculations of item combinations support.
Apriori
Apriori uses the standard, horizontal database transactions representation.
We can say that Apriori:
Generates candidates for item frequent sets using the routine combinations
Filters candidates by Tries with frequencies creation and removal by threshold
Apriori is usually (much) slower than Eclat. Historically, Apriori is the first ARL method, and its implementation in the package is didactic.
Association rules
We can say that the association rule finding function is a general one, but that function does require fast computation of confidence, lift, etc. Hence Eclat's transactions representation is used.
Association rules finding with Apriori is the same as with Eclat.
The package function assocition-rules
with the option setting method=>'Apriori'
simply sends frequent sets found with Apriori to the Eclat based association rule finding.
References
Articles
[Wk1] Wikipedia entry, "Association Rule Learning".
[AA1] Anton Antonov, "Movie genre associations", (2013), MathematicaForPrediction at WordPress.
[AA2] Anton Antonov, "Introduction to data wrangling with Raku", (2021), RakuForPrediction at WordPress.
Packages
[AAp1] Anton Antonov, Implementation of the Apriori algorithm in Mathematica, (2014-2016), MathematicaForPrediction at GitHub/antononcube.
[AAp1a] Anton Antonov Implementation of the Apriori algorithm via Tries in Mathematica, (2022), MathematicaForPrediction at GitHub/antononcube.
[AAp2] Anton Antonov, Implementation of the Eclat algorithm in Mathematica, (2022), MathematicaForPrediction at GitHub/antononcube.
[AAp3] Anton Antonov, Data::Generators Raku package, (2021), GitHub/antononcube.
[AAp4] Anton Antonov, Data::Reshapers Raku package, (2021), GitHub/antononcube.
[AAp5] Anton Antonov, Data::Summarizers Raku package, (2021), GitHub/antononcube.
[AAp6] Anton Antonov, UML::Translators Raku package, (2022), GitHub/antononcube.
[AAp7] Anton Antonov, ML::TrieWithFrequencies Raku package, (2021), GitHub/antononcube.