├── README.md ├── 关联分析(Apriori) ├── correlation_analysis.py └── data.txt ├── 数据分类(决策树) ├── data.txt ├── data_generation.py ├── decision_tree.py └── tree.dot └── 数据聚类(K-means) └── k-means.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/README.md -------------------------------------------------------------------------------- /关联分析(Apriori)/correlation_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/关联分析(Apriori)/correlation_analysis.py -------------------------------------------------------------------------------- /关联分析(Apriori)/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/关联分析(Apriori)/data.txt -------------------------------------------------------------------------------- /数据分类(决策树)/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/数据分类(决策树)/data.txt -------------------------------------------------------------------------------- /数据分类(决策树)/data_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/数据分类(决策树)/data_generation.py -------------------------------------------------------------------------------- /数据分类(决策树)/decision_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/数据分类(决策树)/decision_tree.py -------------------------------------------------------------------------------- /数据分类(决策树)/tree.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/数据分类(决策树)/tree.dot -------------------------------------------------------------------------------- /数据聚类(K-means)/k-means.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chgl16/data-mining-algorithm/HEAD/数据聚类(K-means)/k-means.py --------------------------------------------------------------------------------