CommencerCommencer gratuitement

What's in the basket?

It's now time to see what you have in your basket! Imagine you are working with thousands of baskets, you may first want to be able to display all or part of the items of that same basket. Additionally, you would like to know how many of these items you have in your basket. In this exercise, you will plot the items of the basket you retrieved in the previous exercise, i.e. One_basket and discover what type of items are in the basket we chose earlier.

Cet exercice fait partie du cours

Market Basket Analysis in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Plot the total number of items within the basket
ggplot(One_basket, aes(x = ___,
                       y = ___)) + 
       geom____() + coord_flip() + xlab("Items")
Modifier et exécuter le code