Loading article…
Apriori algorithm used for pattern mining with 771 min-support, generating frequent category sets, and association rule learning, with applications in market
| At a glance | |
|---|---|
| Min-support | 771 |
| Frequent category sets | 1-item, 2-item, 3-item |
| Association rule learning | 100% set associations |
The Apriori algorithm has been used in various applications, including market basket analysis, where it can be used to identify frequent item sets and generate association rules [2]. The algorithm has also been used in other domains, such as database transactions, where it can be used to identify frequent patterns and generate association rules. In the example provided by Feng Li [1], the Apriori algorithm is used to mine frequent category patterns from a dataset of attributes of places, with a min-support of 771.
The Apriori algorithm has some limitations, including the generation of large numbers of subsets and the assumption that the database is permanently in memory [2]. Other algorithms, such as Max-Miner, have been developed to address these limitations and improve the efficiency of the Apriori algorithm. The Apriori algorithm has a time and space complexity of O(2^n), where n is the horizontal width of the database, making it less efficient for large databases [2].
| Algorithm | Time Complexity |
|---|---|
| Apriori | O(2^n) |
| Max-Miner | O(n) |
The Apriori algorithm has been widely used in various applications, and its limitations have led to the development of more efficient algorithms. The algorithm's ability to identify frequent item sets and generate association rules makes it a valuable tool for data analysis and machine learning. However, its limitations and the development of more efficient algorithms will continue to be an important area of research.
Coverage is mostly measured — 6 of 6 reports stay neutral.
Every Monday — the token unlocks, Fed dates & catalysts set to move crypto and markets this week. So you’re never blindsided.
Free · 3-min read · one-click unsubscribe
AI-assisted synthesis by the TrendWatcher Editorial Desk · sourced from 2 outlets · Aug 12, 2026 · How we report
Its primary purpose is to identify frequent itemsets and discover association rules within large datasets, often used to analyze customer purchasing behavior.
It uses the downward closure lemma to prune infrequent itemsets, preventing the algorithm from wasting time checking larger groups that contain infrequent subsets.
A lift value greater than 1 indicates a positive association, meaning two items are more likely to be purchased together than would be expected by random chance.