Reputation: 23
I want to use the Association Rule Mining package from PyCaret. I installed the same using:
pip install pycaret[full]
However, when I try to import the arules module, I get the ModuleNotFoundError:
>>> from pycaret.arules import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'pycaret.arules'
What should I do to be able to use the association rule mining module?
Upvotes: 2
Views: 1253