Nothing
context("age operations")
test_that("Age grouping ok", {
x <- c(1, 2, 10, 20, 50, NA, 100)
expect_equal(length(unique(levels(group_age(x, "years")))), max(na.omit(x)) - min(na.omit(x)))
expect_equal(length(unique(levels(group_age(x, "decades")))), 10)
expect_equal(length(unique(levels(group_age(x, "even", 5)))), 5)
})
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.