ComeçarComece de graça

Number of possible baskets

In market basket analysis it is important to have a good understanding of concepts related to sets, subsets and supersets. The purpose of this exercise is to get a sense of how fast the number of possible baskets, i.e. subsets, grows as a function of the itemset size, i.e. the size of the original set. Suppose you are going to a slightly larger grocery store which instead of having only 4 distinct products offers 10 different products.

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 items
n_items = ___

# Subset size
k = ___

# Number of possible subsets of size k
___(____,____)
Editar e executar o código