Consider that Apriori has a space complexity of O(2^n)
, so, no matter which language you use, if you have a large dataset, you keep all your data in RAM, and use a very low minimum support, you will encounter memory utilization problems.
1 Like