├── .idea ├── Top10_Algorithms_in_DataMining.iml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── Apriori └── Apriori.py ├── C4.5 └── C4.5.py ├── CART ├── Cart.py └── testSet ├── EM └── em.py ├── K-means ├── Kmeans.py └── testSet ├── KNN └── KNN.py ├── PageRank └── pagerank.py └── README.md /.idea/Top10_Algorithms_in_DataMining.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/.idea/Top10_Algorithms_in_DataMining.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Apriori/Apriori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/Apriori/Apriori.py -------------------------------------------------------------------------------- /C4.5/C4.5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/C4.5/C4.5.py -------------------------------------------------------------------------------- /CART/Cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/CART/Cart.py -------------------------------------------------------------------------------- /CART/testSet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/CART/testSet -------------------------------------------------------------------------------- /EM/em.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/EM/em.py -------------------------------------------------------------------------------- /K-means/Kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/K-means/Kmeans.py -------------------------------------------------------------------------------- /K-means/testSet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/K-means/testSet -------------------------------------------------------------------------------- /KNN/KNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/KNN/KNN.py -------------------------------------------------------------------------------- /PageRank/pagerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/PageRank/pagerank.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangMu1/Top10_Algorithms_in_DataMining/HEAD/README.md --------------------------------------------------------------------------------