Looking at specific items
Sometimes, you may want to look at specific items rather than looking at overall baskets. From the Online_Retail_clean dataset, you will select baskets containing herb markers. You will be looking at two specific items which have the following description: "HERB MARKER ROSEMARY" and "HERB MARKER THYME". Your task will be to find out the number of baskets containing these items (both individually and in combination).
Cet exercice fait partie du cours
Market Basket Analysis in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Number of total and distinct items for HERB MARKER THYME
Online_Retail_clean %>%
filter(___ == "___") %>%
summarize(n_tot_items = ___,
n_basket_item = n_distinct(___))