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
- Host: GitHub
- URL: https://github.com/zhaytam/apriorialgorithm
- Owner: zHaytam
- License: mit
- Created: 2018-10-24T15:31:17.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T17:48:28.000Z (about 7 years ago)
- Last Synced: 2025-02-12T15:53:13.700Z (10 months ago)
- Topics: algorithms, apriori-algorithm, python3
- Language: Python
- Homepage: https://blog.zhaytam.com/2018/10/23/association-rule-mining-using-apriori-algorithm/
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).