Nothing
context("stat_panel_counts")
test_that("stat_panel_counts", {
tst.df <- data.frame(
x = c(2.2, -0.2, -0.2, -2.5, -0.6, -0.1),
y = c(1.1, -0.6, -0.9, -1.6, 0.3, 1.6),
group = c("A", "A", "A", "B", "B", "B")
)
vdiffr::expect_doppelganger("stat_panel_counts_xy",
ggplot(tst.df, aes(x, y)) +
stat_panel_counts() +
geom_point()
)
vdiffr::expect_doppelganger("stat_panel_counts_x",
ggplot(tst.df, aes(x)) +
stat_panel_counts() +
geom_histogram(bins = 3)
)
vdiffr::expect_doppelganger("stat_panel_counts_y",
ggplot(tst.df, aes(y)) +
stat_panel_counts() +
geom_histogram(bins = 3)
)
p <- ggplot(tst.df, aes(x, y)) +
stat_panel_counts() +
geom_point()
result <- layer_data(p)[, c("npcx", "npcy", "label", "count", "hjust", "vjust")]
expected <- data.frame(
npcx = 0.95,
npcy = 0.95,
label = "n=6",
count = 6L,
hjust = "inward",
vjust = "inward")
expect_identical(result, expected)
p <- ggplot(tst.df, aes(x)) +
stat_panel_counts()
result <- layer_data(p)[, c("npcx", "npcy", "label", "count", "hjust", "vjust")]
expect_identical(result, expected)
p <- ggplot(tst.df, aes(y)) +
stat_panel_counts()
result <- layer_data(p)[, c("npcx", "npcy", "label", "count", "hjust", "vjust")]
expect_identical(result, expected)
expect_error(ggplot(tst.df, aes(x, y)) +
stat_panel_counts(label.x = NA))
expect_error(ggplot(tst.df, aes(x, y)) +
stat_panel_counts(label.y = NA))
})
test_that("stat_group_counts", {
tst.df <- data.frame(
x = c(2.2, -0.2, -0.2, -2.5, -0.6, -0.1),
y = c(1.1, -0.6, -0.9, -1.6, 0.3, 1.6),
group = c("A", "A", "A", "B", "B", "A")
)
vdiffr::expect_doppelganger("stat_group_counts_xy",
ggplot(tst.df, aes(x, y)) +
stat_group_counts() +
geom_point()
)
vdiffr::expect_doppelganger("stat_group_counts_xy_color",
ggplot(tst.df, aes(x, y, color = group)) +
stat_group_counts() +
geom_point()
)
vdiffr::expect_doppelganger("stat_group_counts_x",
ggplot(tst.df, aes(x)) +
stat_group_counts() +
geom_histogram(bins = 3)
)
vdiffr::expect_doppelganger("stat_group_counts_y",
ggplot(tst.df, aes(y)) +
stat_group_counts() +
geom_histogram(bins = 3)
)
p <- ggplot(tst.df, aes(x, y)) +
stat_group_counts() +
geom_point()
result <- layer_data(p)[, c("npcx", "npcy", "label", "count", "total",
"count.label", "pc.label", "dec.label", "fr.label", "hjust", "vjust")]
expected <- data.frame(
npcx = 0.95,
npcy = 0.95,
label = "n=6",
count = 6L,
total = 6L,
count.label = "n=6",
pc.label = "p=100%",
dec.label = "f=1.00",
fr.label = "6 / 6",
hjust = "inward",
vjust = "inward")
expect_identical(result, expected)
p <- ggplot(tst.df, aes(x)) +
stat_group_counts()
result <- layer_data(p)[, c("npcx", "npcy", "label", "count", "total",
"count.label", "pc.label", "dec.label", "fr.label", "hjust", "vjust")]
expect_identical(result, expected)
p <- ggplot(tst.df, aes(y)) +
stat_group_counts()
result <- layer_data(p)[, c("npcx", "npcy", "label", "count", "total",
"count.label", "pc.label", "dec.label", "fr.label", "hjust", "vjust")]
expect_identical(result, expected)
p <- ggplot(tst.df, aes(x, y)) +
stat_group_counts(digits = 3) +
geom_point()
result <- layer_data(p)[, c("npcx", "npcy", "label", "count", "total",
"count.label", "pc.label", "dec.label", "fr.label", "hjust", "vjust")]
expected <- data.frame(
npcx = 0.95,
npcy = 0.95,
label = "n=6",
count = 6L,
total = 6L,
count.label = "n=6",
pc.label = "p=100.0%",
dec.label = "f=1.000",
fr.label = "6 / 6",
hjust = "inward",
vjust = "inward")
expect_identical(result, expected)
p <- ggplot(tst.df, aes(x, y, group = group)) +
stat_group_counts(digits = 3) +
geom_point()
result <- layer_data(p)[, c("npcx", "npcy", "label", "group", "count", "total",
"count.label", "pc.label", "dec.label", "fr.label", "hjust", "vjust")]
expected <- data.frame(
npcx = 0.95,
npcy = c(0.95, 0.90),
label = c("n=4", "n=2"),
group = 1L:2L,
count = c(4L, 2L),
total = 6L,
count.label = c("n=4", "n=2"),
pc.label = c("p=66.7%", "p=33.3%"),
dec.label = c("f=0.667", "f=0.333"),
fr.label = c("4 / 6", "2 / 6"),
hjust = "inward",
vjust = "inward")
expect_equal(result, expected)
expect_error(ggplot(tst.df, aes(x, y)) +
stat_group_counts(label.x = NA))
expect_error(ggplot(tst.df, aes(x, y)) +
stat_group_counts(label.y = NA))
expect_error(ggplot(tst.df, aes(x, y, color = group)) +
stat_group_counts(label.x = NA))
expect_error(ggplot(tst.df, aes(x, y, color = group)) +
stat_group_counts(label.y = NA))
})
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.