Nothing
context("theme_ridges")
test_that("key theme_ridges settings", {
# y axis labels are vertically aligned
expect_equal(theme_ridges()$axis.text.y$vjust, 0)
# no minor grid
expect_equal(theme_ridges()$panel.grid.minor, ggplot2::element_blank())
# major grid can be switched off
expect_equal(theme_ridges(grid = FALSE)$panel.grid.major, ggplot2::element_blank())
# centered axis labels can be switched on
expect_equal(theme_ridges(center_axis_labels = TRUE)$axis.title.x$hjust, 0.5)
expect_equal(theme_ridges(center_axis_labels = TRUE)$axis.title.y$hjust, 0.5)
})
# Visual tests ------------------------------------------------------------
test_that("theme_ridges draws correctly", {
d <- data.frame(x = rep(1:5, 3), y = c(rep(0, 5), rep(1, 5), rep(3, 5)),
height = c(0, 1, 3, 4, 0, 1, 2, 3, 5, 4, 0, 5, 4, 4, 1))
p <- ggplot(d, aes(x, y, height = height, group = y)) + geom_ridgeline(fill="lightblue")
expect_doppelganger("theme_ridges default",
p + theme_ridges()
)
expect_doppelganger("theme_ridges without grid",
p + theme_ridges(grid = FALSE)
)
expect_doppelganger("theme_ridges centered axis labels",
p + theme_ridges(center_axis_labels = TRUE)
)
})
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.