ComeçarComece de graça

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

Este exercício faz parte do curso

Market Basket Analysis in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Number of total and distinct items for HERB MARKER THYME
Online_Retail_clean %>%
  filter(___ == "___")  %>%
  summarize(n_tot_items = ___,
            n_basket_item = n_distinct(___))
Editar e executar o código