An efficient Python implementation of the Apriori algorithm.
Project description
Efficient-Apriori
An efficient pure Python implementation of the Apriori algorithm. Works with Python 3.6 and 3.7.
The apriori algorithm uncovers hidden structures in categorical data.
The classical example is a database containing purchases from a supermarket.
Every purchase has a number of items associated with it.
We would like to uncover association rules such as {bread, eggs} -> {bacon}
from the data.
This is the goal of association rule learning, and the Apriori algorithm is arguably the most famous algorithm for this problem.
This repository contains an efficient, well-tested implementation of the apriori algorithm as descriped in the original paper by Agrawal et al, published in 1994.
Example
Here's a minimal working example.
Notice that in every transaction with eggs
present, bacon
is present too.
Therefore, the rule {eggs} -> {bacon}
is returned with 100 % confidence.
from efficient_apriori import apriori
transactions = [('eggs', 'bacon', 'soup'),
('eggs', 'bacon', 'apple'),
('soup', 'bacon', 'banana')]
itemsets, rules = apriori(transactions, min_support=0.5, min_confidence=1)
print(rules) # [{eggs} -> {bacon}, {soup} -> {bacon}]
More examples are included below.
Installation
The software is available through GitHub, and through PyPI.
You may install the software using pip
.
pip install efficient-apriori
Contributing
You are very welcome to scrutinize the code and make pull requests if you have suggestions and improvements. Your submitted code must be PEP8 compliant, and all tests must pass.
More examples
Filtering and sorting association rules
It's possible to filter and sort the returned list of association rules.
from efficient_apriori import apriori
transactions = [('eggs', 'bacon', 'soup'),
('eggs', 'bacon', 'apple'),
('soup', 'bacon', 'banana')]
itemsets, rules = apriori(transactions, min_support=0.2, min_confidence=1)
# Print out every rule with 2 items on the left hand side,
# 1 item on the right hand side, sorted by lift
rules_rhs = filter(lambda rule: len(rule.lhs) == 2 and len(rule.rhs) == 1, rules)
for rule in sorted(rules_rhs, key=lambda rule: rule.lift):
print(rule) # Prints the rule and its confidence, support, lift, ...
Working with large datasets
If you have data that is too large to fit into memory, you may pass a function returning a generator instead of a list.
The min_support
will most likely have to be a large value, or the algorithm will take very long before it terminates.
If you have massive amounts of data, this Python implementation is likely not fast enough, and you should consult more specialized implementations.
def data_generator(filename):
"""
Data generator, needs to return a generator to be called several times.
"""
def data_gen():
with open(filename) as file:
for line in file:
yield tuple(k.strip() for k in line.split(','))
return data_gen
transactions = data_generator('dataset.csv')
itemsets, rules = apriori(transactions, min_support=0.9, min_confidence=0.6)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file efficient_apriori-0.4.5.tar.gz
.
File metadata
- Download URL: efficient_apriori-0.4.5.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 142f7f824d564d40799798461f552ab87f957c7b70be2b225fc0b001b89c3ca8 |
|
MD5 | 6f0eb6bbb2b02786a3fec303dd97a0c7 |
|
BLAKE2b-256 | d27b71c12582b2e1b561e76cf52239bcece4ced6aac9c93974b7fdede5f407e7 |
File details
Details for the file efficient_apriori-0.4.5-py3-none-any.whl
.
File metadata
- Download URL: efficient_apriori-0.4.5-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3c5b77d16a58c5d4fb8b2c8721b5c7a3067894304b27a38a6f442caa19e5841 |
|
MD5 | b4c257bcb8463aa356e7ae96637318a9 |
|
BLAKE2b-256 | 13aba8def875902610558395242a147b8490372f031561902c534ebbf5db14ca |