Nothing
# Tests for eye plots
#
# Author: mjskay
###############################################################################
library(dplyr)
library(tidyr)
test_that("one-parameter eye plots work", {
skip_if_no_vdiffr()
skip_if_sensitive_to_density()
set.seed(123)
df = data.frame(x = rnorm(1000), y = 1)
p = ggplot(df, aes(x = x, y = y))
vdiffr::expect_doppelganger("one-parameter horizontal eye",
p + stat_eye(n = 15)
)
vdiffr::expect_doppelganger("one-parameter horizontal half-eye",
p + stat_halfeye(n = 15)
)
p = ggplot(df, aes(x = y, y = x))
vdiffr::expect_doppelganger("one-parameter vertical eye",
p + stat_eye(n = 15)
)
vdiffr::expect_doppelganger("one-parameter vertical halfeye",
p + stat_halfeye(n = 15)
)
})
test_that("two-parameter eye plots work", {
skip_if_no_vdiffr()
skip_if_sensitive_to_density()
set.seed(123)
df = tibble(x = rnorm(1000), y = "a", y_int = 1) %>%
rbind(tibble(x = rnorm(1000, 1), y = "b", y_int = 2))
p = ggplot(df, aes(x = x, y = y))
vdiffr::expect_doppelganger("two-parameter (factor) horizontal eye (fill)",
p + stat_eye(aes(fill = y), scale = 0.5, n = 15)
)
p = ggplot(df, aes(x = y, y = x))
vdiffr::expect_doppelganger("two-parameter (factor) vertical eye (fill)",
p + stat_eye(aes(fill = y), scale = 0.5, n = 15)
)
p = ggplot(df, aes(x = x, y = y_int))
vdiffr::expect_doppelganger("two-parameter (numeric) horizontal half-eye (fill)",
p +
stat_halfeye(aes(fill = y_int), fatten_point = 3, n = 15, show.legend = c(size = FALSE)) +
scale_y_discrete()
)
p = ggplot(df, aes(x = y_int, y = x))
vdiffr::expect_doppelganger("two-parameter (numeric) vertical eye",
p + stat_eye(fatten_point = 3, n = 15)
)
})
test_that("dodged eye plots work", {
skip_if_no_vdiffr()
skip_if_sensitive_to_density()
set.seed(123)
df = data.frame(
y = rnorm(500, 1),
x = "a",
g = "g1",
stringsAsFactors = FALSE
) %>%
rbind(data.frame(
y = rnorm(900),
x = "b",
g = c("g1", "g2", "g3"),
stringsAsFactors = FALSE
))
p = ggplot(df, aes(x = x, y = y))
vdiffr::expect_doppelganger("vertical halfeye with dodging (3 groups, right)",
p + stat_halfeye(aes(fill = g), position = "dodge", n = 15, justification = 0)
)
vdiffr::expect_doppelganger("vertical halfeye with dodging (3 groups, left)",
p + stat_halfeye(aes(fill = g), position = "dodge", side = "bottom", n = 15)
)
vdiffr::expect_doppelganger("vertical eye with dodging (3 groups, left)",
p + stat_eye(aes(fill = g), position = "dodge", n = 15)
)
vdiffr::expect_doppelganger("vertical eye with dodging (3 groups, just = 0)",
p + stat_eye(aes(fill = g), position = "dodge", justification = 0, n = 15)
)
vdiffr::expect_doppelganger("vert, dodge, 3 groups, just = 1, top, scale = 0.5",
p + stat_halfeye(
aes(fill = g),
position = "dodge", justification = 1, side = "top", scale = 0.5, n = 15
)
)
vdiffr::expect_doppelganger("vert, dodge, 3 groups, just = 0.5, top, scale = 0.5",
p + stat_halfeye(
aes(fill = g),
position = "dodge", justification = 0.5, side = "top", scale = 0.5, n = 15
)
)
vdiffr::expect_doppelganger("vert halfeye, dodge, 3 groups, just = 0, top, scale = 1.5",
p + stat_halfeye(aes(fill = g), position = "dodge", side = "top", scale = 1.5, n = 15)
)
vdiffr::expect_doppelganger("vert halfeye, dodge, 3 groups, just = 0, both, scale = 1.5",
p + stat_halfeye(aes(fill = g), position = "dodge", side = "both", scale = 1.5, n = 15)
)
vdiffr::expect_doppelganger("halfeye, dodge, 3 groups, just = 0, both, scale = 4, rev y",
p + stat_halfeye(
aes(x = y, y = fct_rev_(x), fill = g),
position = "dodge", side = "top", scale = 4, slab_color = "black", n = 15
)
)
vdiffr::expect_doppelganger("vert halfeye, dodge, 3 groups, just = 0, bottom, scale = 1.5",
p + stat_halfeye(aes(fill = g), position = "dodge", side = "bottom", scale = 1.5, n = 15)
)
})
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.