Nothing
context("test-mapping")
test_that("build_aes works", {
mapping <- build_aes(iris, x = "Sepal.Width")
expect_true(is.list(mapping))
expect_length(mapping, 1)
mapping <- build_aes(iris, x = "Sepal.Width", y = "Sepal.Width")
expect_true(is.list(mapping))
expect_length(mapping, 2)
mapping <- build_aes(iris, x = "Sepal.Width", geom = "boxplot")
expect_true(is.list(mapping))
expect_length(mapping, 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.