Nothing
# This test may fail intermittently due to minor label shifts caused by ggrepel::geom_text_repel().
# Such changes are expected and do not indicate a functional error in the plotting code.
# The snapshot should be accepted if the overall structure of the plot remains consistent.
test_that("autoplot.barrel_ord works with metaMDS", {
library(ggplot2)
library(vegan)
library(vdiffr)
data(dune)
data(dune.env)
set.seed(123)
ord <- metaMDS(dune, k = 2, trymax = 20)
ord <- barrel_prepare(ord, dune.env)
p <- autoplot(
ord,
group = "Management",
data = dune,
method = "classic",
kind = "sd",
geom_type = "polygon",
show_arrows = TRUE,
show_centroids = TRUE,
show_labels = FALSE,
show_ellipses = TRUE,
alpha = 0.5
)
expect_doppelganger("autoplot barrel_ord (metaMDS)", p)
})
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.