An efficient pure Python implementation of the Apriori algorithm. The apriori algorithm uncovers hidden structures in categorical data. The classical example is a database containing purchases from a ...
Apriori is a classical algorithm used to find frequent itemsets in transaction data. A frequent itemset is a group of items that appears together in at least a minimum number of transactions. The main ...