Help language development. Donate to The Perl Foundation
# Raku ML::AssociationRuleLearning [](http://sparrowhub.io:2222) [](https://opensource.org/licenses/Artistic-2.0) This repository has the code of a Raku package for [Association Rule Learning (ARL)](https://en.wikipedia.org/wiki/Association_rule_learning) functions, [Wk1]. The ARL framework includes the algorithms [Apriori](https://en.wikipedia.org/wiki/Apriori_algorithm) and [Eclat](https://en.wikipedia.org/wiki/Association_rule_learning#Eclat_algorithm), and the measures [confidence](https://en.wikipedia.org/wiki/Association_rule_learning#Confidence), [lift](https://en.wikipedia.org/wiki/Association_rule_learning#Lift), and [conviction](https://en.wikipedia.org/wiki/Association_rule_learning#Conviction), (and others.) For computational introduction to ARL utilization (in Mathematica) see the article ["Movie genre associations"](https://mathematicaforprediction.wordpress.com/2013/10/06/movie-genre-associations/), [AA1]. The examples below use the packages ["Data::Generators"](https://raku.land/cpan:ANTONOV/Data::Generators), ["Data::Reshapers"](https://raku.land/cpan:ANTONOV/Data::Reshapers), and ["Data::Summarizers"](https://raku.land/cpan:ANTONOV/Data::Summarizers), described in the article ["Introduction to data wrangling with Raku"](https://rakuforprediction.wordpress.com/2021/12/31/introduction-to-data-wrangling-with-raku/), [AA2]. ------- ## Installation Via zef-ecosystem: ```shell zef install ML::AssociationRuleLearning ``` From GitHub: ```shell zef install https://github.com/antononcube/Raku-ML-AssociationRuleLearning ``` ------- ## Frequent sets finding Here we get the Titanic dataset (from "Data::Reshapers") and summarize it: ```perl6 use Data::Reshapers; use Data::Summarizers; my @dsTitanic = get-titanic-dataset(); records-summary(@dsTitanic); ``` **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: ```perl6 use ML::AssociationRuleLearning; my @freqSets = frequent-sets(@dsTitanic, min-support => 200, min-number-of-items => 2, max-number-of-items => Inf):counts; @freqSets.elems ``` The function `frequent-sets` returns the frequent sets together with their support. Here we tabulate the result: ```perl6 say to-pretty-table(@freqSets.map({ %( Frequent-set => $_.key.join(' '), Count => $_.value) }), align => 'l'); ``` We can verify the result by looking into these group counts, [AA2]: ```perl6 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 }); ``` Or these contingency tables: ```perl6 my $obj = group-by( @dsTitanic, "passengerClass") ; $obj = $obj.map({ $_.key => cross-tabulate( $_.value, "passengerSex", "passengerSurvival" ) }); .say for $obj.Array; ``` **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: ```{perl6, eval=FALSE} @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: ```perl6 association-rules(@dsTitanic, min-support => 0.3, min-confidence => 0.7) ==> to-pretty-table ``` ### 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: ```perl6 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 ``` Here we find association rules and pretty-print them: ```perl6 $eclatObj.find-rules(min-confidence=>0.7) ==> to-pretty-table ``` **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:  The [PlantUML spec](./resources/class-diagram.puml) and [diagram](./resources/class-diagram.png) were obtained with the CLI script `to-uml-spec` of the package "UML::Translators", [AAp6]. Here we get the [PlantUML spec](./resources/class-diagram.puml): ```shell to-uml-spec ML::AssociationRuleLearning > ./resources/class-diagram.puml ``` Here get the [diagram](./resources/class-diagram.png): ```shell 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](https://docs.raku.org/language/setbagmix) 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`](https://docs.raku.org/routine/combinations) - Filters candidates by [Tries with frequencies](https://github.com/antononcube/Raku-ML-TriesWithFrequencies) 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"](https://en.wikipedia.org/wiki/Association_rule_learning). [AA1] Anton Antonov, ["Movie genre associations"](https://mathematicaforprediction.wordpress.com/2013/10/06/movie-genre-associations/), (2013), [MathematicaForPrediction at WordPress](https://mathematicaforprediction.wordpress.com). [AA2] Anton Antonov, ["Introduction to data wrangling with Raku"](https://rakuforprediction.wordpress.com/2021/12/31/introduction-to-data-wrangling-with-raku/), (2021), [RakuForPrediction at WordPress](https://rakuforprediction.wordpress.com). ### Packages [AAp1] Anton Antonov, [Implementation of the Apriori algorithm in Mathematica](https://github.com/antononcube/MathematicaForPrediction/blob/master/AprioriAlgorithm.m), (2014-2016), [MathematicaForPrediction at GitHub/antononcube](https://github.com/antononcube/MathematicaForPrediction/). [AAp1a] Anton Antonov [Implementation of the Apriori algorithm via Tries in Mathematica](https://github.com/antononcube/MathematicaForPrediction/blob/master/Misc/AprioriAlgorithmViaTries.m), (2022), [MathematicaForPrediction at GitHub/antononcube](https://github.com/antononcube/MathematicaForPrediction/). [AAp2] Anton Antonov, [Implementation of the Eclat algorithm in Mathematica](https://github.com/antononcube/MathematicaForPrediction/blob/master/EclatAlgorithm.m), (2022), [MathematicaForPrediction at GitHub/antononcube](https://github.com/antononcube/MathematicaForPrediction/). [AAp3] Anton Antonov, [Data::Generators Raku package](https://raku.land/cpan:ANTONOV/Data::Generators), (2021), [GitHub/antononcube](https://github.com/antononcube). [AAp4] Anton Antonov, [Data::Reshapers Raku package](https://raku.land/cpan:ANTONOV/Data::Reshapers), (2021), [GitHub/antononcube](https://github.com/antononcube). [AAp5] Anton Antonov, [Data::Summarizers Raku package](https://raku.land/cpan:ANTONOV/Data::Summarizers), (2021), [GitHub/antononcube](https://github.com/antononcube). [AAp6] Anton Antonov, [UML::Translators Raku package](https://raku.land/zef:antononcube/UML::Translators), (2022), [GitHub/antononcube](https://github.com/antononcube). [AAp7] Anton Antonov, [ML::TrieWithFrequencies Raku package](https://raku.land/cpan:ANTONOV/ML::TriesWithFrequencies), (2021), [GitHub/antononcube](https://github.com/antononcube).