Nothing
library(testthat)
if(require(ggplot2)){
test_that("Nonsyntactic variable names are accepted", {
mpg2 <- within(mpg, `car class` <- class)
gg <- ggplot(mpg2, aes(hwy, cty, colour=`car class`)) +
geom_point()
p <- directlabels::direct.label(gg)
expect_is(p, "ggplot")
})
}
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.