Nothing
test_that("The geom_labelpath() constructor works", {
x <- geom_labelpath(stat = "density")
expect_s3_class(x, "LayerInstance")
expect_s3_class(x$geom, "GeomTextpath")
expect_s3_class(x$geom, "GeomLabelpath")
expect_s3_class(x$stat, "StatDensity")
})
test_that("Text path grob has correct types", {
p <- ggplot(iris, aes(Sepal.Width)) +
geom_labelpath(aes(label = Species, group = Species), stat = "density")
grobs <- layer_grob(p)[[1]]
expect_s3_class(grobs, "gTree")
expect_s3_class(grobs, "labelpath")
expect_length(grobs$children, 0)
grobs <- makeContent(grobs)
expect_length(grobs$children, 7)
expect_s3_class(grobs$children[[1]], "polyline")
expect_s3_class(grobs$children[[2]], "polygon")
expect_s3_class(grobs$children[[3]], "text")
expect_s3_class(grobs$children[[4]], "polygon")
expect_s3_class(grobs$children[[5]], "text")
expect_s3_class(grobs$children[[6]], "polygon")
expect_s3_class(grobs$children[[7]], "text")
})
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.