What Patterns Hide in Baskets
The viewer learns what association mining is and how transaction data can reveal items that tend to appear together.
Find the Hidden Patterns shows how association mining turns transaction data into clear links between items that often appear together. By the end, you'll know: what association mining means, how transaction data is read, and how item pairs reveal patterns. When people buy, click, or watch things, they leave behind transaction data. Association mining looks for items that show up together more often than you’d expect. That is how you find patterns in baskets, carts, and clickstreams. For example, if many shoppers who buy pasta also buy tomato sauce, that co-occurrence matters. You are not guessing from one case. You are scanning lots of records and asking, what tends to travel together again and again? Now let’s name the pieces. A transaction is one record, like one shopping trip or one session. An itemset is the group of items inside that record. If the same itemset keeps appearing across many records, it starts to matter. The data is usually categorical and binary for this task. Categorical means each item is either present or not present, not a number you average. Binary presence keeps the question simple: did this basket include bread, yes or no? Did this session include a search, yes or no? From there, you build a rule in if-then form. The left side is the antecedent, and the right side is the consequent. So you might read it as, if someone buys diapers, then they also buy wipes. Support, confidence, and lift tell you whether that rule is common, reliable, and genuinely interesting.