Nothing
# Test for ttable
test_that("ttable builds contingency table", {
from <- c("A", "B", "A")
to <- c("B", "A", "A")
tab <- ttable(from, to)
expect_equal(tab["A", "A"], 1)
expect_equal(tab["A", "B"], 1)
expect_error(ttable(from, to[1:2]))
})
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.