FileTree
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| myapriori ├─ .idea │ ├─ encodings.xml │ ├─ inspectionProfiles │ │ ├─ profiles_settings.xml │ │ └─ Project_Default.xml │ ├─ misc.xml │ ├─ modules.xml │ ├─ myapriori.iml │ ├─ vcs.xml │ └─ workspace.xml ├─ Apriori │ ├─ Apriori.py │ ├─ __init__.py │ └─ __pycache__ │ ├─ Apriori.cpython-311.pyc │ └─ __init__.cpython-311.pyc ├─ docs │ ├─ README.md │ └─ 第三章:关联模式挖掘.md ├─ README.md ├─ scripts │ └─ getRelativePath.py └─ tests ├─ data │ ├─ input.txt │ └─ output.txt └─ test_1.py
|
Usage
在/docs中有关于Apriori算法的介绍
关于ide
vscode:在/Apriori中运行Apriori.py
pycharm: 在/test运行test_1.py