Nothing
# Tests for guide_rampbar
#
# Author: mjskay
###############################################################################
library(dplyr)
library(tidyr)
library(distributional)
test_that("rampbar works with fill_ramp", {
skip_if_no_vdiffr()
vdiffr::expect_doppelganger("fill_ramp without `to`",
tibble(d = dist_uniform(0, 1)) %>%
ggplot(aes(y = 0, dist = d)) +
stat_dist_slab(aes(fill_ramp = after_stat(x)), fill = "blue", n = 20) +
scale_fill_ramp_continuous(from = "red", guide = guide_rampbar())
)
vdiffr::expect_doppelganger("fill_ramp with `to`",
tibble(d = dist_uniform(0, 1)) %>%
ggplot(aes(y = 0, dist = d)) +
stat_dist_slab(aes(fill_ramp = after_stat(x)), fill = "blue", n = 20) +
scale_fill_ramp_continuous(from = "red", guide = guide_rampbar(to = "blue"))
)
})
test_that("rampbar works with color_ramp", {
skip_if_no_vdiffr()
vdiffr::expect_doppelganger("reversed color_ramp without `to`",
tibble(d = dist_uniform(0, 1)) %>%
ggplot(aes(y = 0, dist = d)) +
stat_dist_slab(aes(color_ramp = after_stat(x)), n = 20, color = "red", size = 5) +
scale_color_ramp_continuous(from = "blue", guide = guide_rampbar(reverse = TRUE))
)
vdiffr::expect_doppelganger("color_ramp with `to`",
tibble(d = dist_uniform(0, 1)) %>%
ggplot(aes(y = 0, dist = d)) +
stat_dist_slab(aes(color_ramp = after_stat(x)), n = 20, color = "red", size = 5) +
scale_color_ramp_continuous(from = "blue", guide = guide_rampbar(to = "red"))
)
})
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.