Nothing
data(Groceries)
itset <- new("itemsets",
items = encode(c('whole milk', 'soda'), itemLabels = Groceries))
supp <- support(itset, Groceries, type = "absolute")
expect_equal(crossTable(Groceries, measure='count')['whole milk', 'soda'],
supp)
expect_equal(crossTable(Groceries, measure='support')['whole milk', 'soda'],
supp / length(Groceries))
expect_equal(crossTable(Groceries, measure='lift')['whole milk', 'soda'],
supp / length(Groceries) / prod(itemFrequency(Groceries)[c('whole milk', 'soda')]))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.