Finding Frequent Itemsets

We assume there is a number ss, called the support threshold. If II is a set of items (or an itemset), the support for II is the number of baskets for which II is a subset. We say II is frequent if its support is ss or more. Given a universal set of items, a list of baskets (which are subsets of items), and a threshold ss, determine all frequent itemsets.

Parameters

  • nn: total number of transactions (size of database)

Filters

Computational Model

Randomization

Approximation

Algorithms Table

Displaying 4 of 4 algorithms

See more
The Multistage Algorithm1999O(n2)O(n^2)O(n2)O(n^2)
The Multihash Algorithm1999O(n2)O(n^2)O(n2)O(n^2)
The Algorithm of Park; Chen; and Yu (PCY)1995O(n2)O(n^2)O(n2)O(n^2)
A-Priori algorithm1994O(n2)O(n^2)O(n2)O(n^2)

Reductions Table

Insuffient Data to display table

Other relevant algorithms

Insuffient Data to display table