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

https://github.com/0xkibh/datamining-algo

This repository consist data mining algorithm implementation example in python
https://github.com/0xkibh/datamining-algo

apriori-algorithm data datamining fp-growth python

Last synced: 3 months ago
JSON representation

This repository consist data mining algorithm implementation example in python

Awesome Lists containing this project

README

        

# Data Mining Algorithms

## This repository contains example of some data mining algorithm implemented using library in Python programming language

- For Apriori, we have used *mlxtend* libray, for which we need to install it using command `pip install mlxtend`

- For Frequent Pattern(FP) Growth also, we used *mlxtend* library

- For KMeans, we used *sklearn* library

- Inside Clustering, we have Hierarchical clustering and DBSCAN, which uses *sklearn* and *scipy*

- Similarly for KMediods, we used *sklearn* library

- Inside Classification, we have Naive Bayes and Decision Tree, which uses *sklearn*