Navigationsmenü öffnen
AIDive
DE
Anmelden
Zurück zum Glossar

Apriori Algorithm

Machine Learning

A method of finding frequently occurring relationships and rules in data sets, especially shopping carts and transactions.

Definition

An a priori algorithm helps to find association rules: which products, events or features often appear together. Its classic example is the analysis of shopping baskets. The algorithm first looks for frequently occurring sets of elements, and then builds rules of the form “if you bought A, you often buy B.”

Beispiel

The store sees that customers who grab coffee often buy creamer, and uses this to make recommendations or display products.

Warum es wichtig ist

The term is important for analytics, recommendations, marketing and primary data research without complex neural networks.

So funktioniert es

The algorithm uses the principle: if a set of elements is rare, then all its extended sets cannot be frequent either. This reduces the number of checks.

Wo es genutzt wird

  • basket analysis
  • product recommendations
  • finding connections in data

Einschränkungen

The method can be heavy on large data and produce many obvious rules. We need the right thresholds of support and credibility.

FAQ

Why is “Apriori Algorithm” useful to know?

The term is important for analytics, recommendations, marketing and primary data research without complex neural networks.