Nothing
library(ggplot2)
library(ggnormalviolin)
library(testthat)
d <- data.frame(
Distribution = c("A", "B"),
Distribution_mean = c(80, 90),
Distribution_sd = c(15, 10)
)
test_that("example", {
expect_silent(ggplot(data = d, aes(x = Distribution)) +
geom_normalviolin(aes(mu = Distribution_mean,
sigma = Distribution_sd)))
})
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.