You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFAIK, in Apriori algorithm, the order doesn't matter. So the behavior is correct. It represents a basket of items, and the order in which they were put in the basket is irrelevant.
If my transactions of the form are :
[
['def', 'abc', 'xyz'],
['def', 'xyz', 'abc']
]
It shows there's a sequence of the form
Doesn't feel right. Shouldn't the order matter? Even if that's not how the algo is defined, can I get that behavior by modifying the code?
The text was updated successfully, but these errors were encountered: