Nothing
test_that("axes and titles are collected correctly for multi-cell plots", {
plots <- wrap_plots(rep(list(p1), 8))
layout <- plot_layout(
design = "12345\n62378",
axes = "collect",
axis_titles = "collect"
)
# columns 1, 2 and 4 should have titles and y-axes
# only row 2 should have titles and x-axes
expect_doppelganger(
"multi-cell title and axis collection",
plots + layout
)
})
test_that("axis columns are properly resized", {
p5 <- p1 + scale_y_continuous(
labels = function(x) paste0("a long axis label signifying ", x)
)
p6 <- p1 + theme(axis.text = element_text(colour = "red")) +
ggtitle("Interrupting plot")
layout <- plot_layout(2, 2, axes = "collect", axis_titles = "collect")
# only column 1 should have long axis labels
# upper left plot should not have x-axis, there rest should
# there should be no excess space between column 1 and 2
expect_doppelganger(
"corrected spacing for long axis labels",
p5 + p5 + p5 + p6 + layout
)
})
test_that("axis titles are collected across empty areas", {
plots <- wrap_plots(rep(list(p1), 6)) +
plot_layout(
axes = "collect",
axis_titles = "collect",
design = "#AB\nC#D\nEF#"
)
expect_doppelganger(
"Empty areas doesn't interfere with title collection",
plots
)
})
test_that("collect guides works well", {
expect_doppelganger(
"collect normal guides",
wrap_plots(p1 + p3, guides = "collect")
)
p_guides <- p3 + scale_color_continuous(guide = guide_colorbar(
theme = theme(legend.key.height = unit(1, "null"))
))
expect_doppelganger(
"collect guides with null unit",
wrap_plots(p1 + p_guides, guides = "collect")
)
expect_doppelganger(
"collect guides with multiple plots with null unit",
wrap_plots(p1 + p_guides + p_guides + labs(color = "another"),
guides = "collect"
)
)
})
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.