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
.
Cet exercice fait partie du cours
Market Basket Analysis in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Select two baskets
Two_baskets = Online_Retail_2011_Q1 %>%
___(___ %in% c(___, 540017))