Nothing
context("geom_*_gradient")
# Visual tests ------------------------------------------------------------
test_that("visual appearance of gradient geoms", {
df <- data.frame(x = c(1, 2, 3, 4, 5, 6),
height = c(1, 2, 3, 2, 1, 2),
type = c("A", "A", "B", "B", "C", "C"))
p <- ggplot(df, aes(x, y = 0, height = height, group = 0, fill = type)) + geom_ridgeline_gradient()
expect_doppelganger("geom_ridgeline_gradient basic fill pattern", p)
p <- ggplot(iris, aes(x = Sepal.Length, y = Species, fill = after_stat(x))) + geom_density_ridges_gradient()
expect_doppelganger("geom_density_ridges_gradient continuous fill", p)
p <- ggplot(iris, aes(x = Sepal.Length, y = Species, fill = after_stat(ecdf))) +
geom_density_ridges_gradient(calc_ecdf = TRUE)
expect_doppelganger("geom_density_ridges_gradient ecdf fill", p)
p <- ggplot(iris, aes(x = Sepal.Length, y = Species, fill = after_stat(quantile))) +
geom_density_ridges_gradient(calc_ecdf = TRUE, quantiles = 5)
expect_doppelganger("geom_density_ridges_gradient quintiles", p)
p <- ggplot(iris, aes(x = Sepal.Length, y = Species, fill = after_stat(quantile))) +
geom_density_ridges_gradient(calc_ecdf = TRUE, quantiles = c(0.05, 0.95))
expect_doppelganger("geom_density_ridges_gradient probability tails", p)
p <- ggplot(iris, aes(x = Sepal.Length, y = Species, fill = after_stat(quantile))) +
geom_density_ridges_gradient(calc_ecdf = TRUE, quantiles = 5, quantile_lines = TRUE)
expect_doppelganger("geom_density_ridges_gradient quantile lines match shading", p)
set.seed(1234)
p <- ggplot(iris, aes(x = Sepal.Length, y = Species, fill = after_stat(x))) +
geom_density_ridges_gradient(jittered_points = TRUE)
expect_doppelganger("geom_density_ridges_gradient jittered points can be turned on", p)
})
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.