LoslegenKostenlos loslegen

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).

Diese Übung ist Teil des Kurses

Market Basket Analysis in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Number of total and distinct items for HERB MARKER THYME
Online_Retail_clean %>%
  filter(___ == "___")  %>%
  summarize(n_tot_items = ___,
            n_basket_item = n_distinct(___))
Code bearbeiten und ausführen