Get startedGet started for free

Two baskets

Remember that you previously created a dataset containing a single basket from the dataset Online_Retail_2011_Q1. Now, it is time to look at two different baskets from that same dataset. The main interest of Market Basket Analysis is to figure out which items are common between both baskets. Starting with two baskets will allow to build on your intuition when working with hundreds or thousands of baskets.

The Invoice Number of the two baskets you are looking at are respectively 540160 and 540017.

This exercise is part of the course

Market Basket Analysis in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Select two baskets
Two_baskets = Online_Retail_2011_Q1 %>%
  ___(___ %in% c(___, 540017))
Edit and Run Code