ComeçarComece de graça

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.

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.

# Plot the total number of items within the basket
ggplot(One_basket, aes(x = ___,
                       y = ___)) + 
       geom____() + coord_flip() + xlab("Items")
Editar e executar o código