zjzhang
Results
1
issues of
zjzhang
```python from fpgrowth_py import fpgrowth itemSetList = [['eggs', 'bacon', 'soup'], ['eggs', 'bacon', 'apple'], ['soup', 'bacon', 'banana']] freqItemSet, rules = fpgrowth(itemSetList, minSupRatio=0.5, minConf=1) print(rules) ``` **THE EXPECTED OUTPUT RULES SHOULD BE:**...