An open API service indexing awesome lists of open source software.

https://github.com/zhaytam/apriorialgorithm

An implementation of the apriori algorithm in Python
https://github.com/zhaytam/apriorialgorithm

algorithms apriori-algorithm python3

Last synced: 8 months ago
JSON representation

An implementation of the apriori algorithm in Python

Awesome Lists containing this project

README

          

# AprioriAlgorithm

This is an implementation of the Apriori algorithm.
More informations about Association Rule Mining: https://blog.zhaytam.com/2018/10/23/association-rule-mining-using-apriori-algorithm/

The implementation was tested on the Titanic dataset (only the training set since we need the Survived feature) and it gave the same result as the package found in R (except for the NaNs which should be removed/ignored).