Nothing
library(ggplot2)
test_that("position_sunflower works", {
dat <- data.frame(x = rep(1, 500), y = rep(1, 500))
g <- ggplot(dat, aes(x, y)) +
geom_point(position = position_sunflower()) +
coord_cartesian(xlim = c(0, 2), ylim = c(0, 2))
expect_s3_class(object = g, class = "gg")
})
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.