# ggseg ----
library(tidyr, quietly = TRUE, warn.conflicts = FALSE)
library(ggseg, quietly = TRUE, warn.conflicts = FALSE)
library(ggseg3d, quietly = TRUE, warn.conflicts = FALSE)
context("test-palettes")
test_that("check new palettes work", {
expect_equal(length(brain_pal("glasser", package = "ggsegGlasser")), 180)
expect_error(brain_pal("glasser"), "not a valid")
expect_true(all(names(brain_pal("glasser", package = "ggsegGlasser")) %in% brain_regions(glasser)))
})
context("test-ggseg-atlas")
test_that("atlases are true ggseg atlases", {
expect_true(is_brain_atlas(glasser))
})
context("test-ggseg")
test_that("Check that polygon atlases are working", {
expect_is(ggseg(atlas = glasser),c("gg","ggplot"))
expect_is(ggseg(atlas = glasser, mapping = aes(fill = region)),
c("gg","ggplot"))
expect_is(ggseg(atlas = glasser, mapping = aes(fill = region)) +
scale_fill_brain("glasser", package = "ggsegGlasser"),
c("gg","ggplot"))
expect_is(ggseg(atlas = glasser, mapping = aes(fill = region)) +
scale_fill_brain("glasser", package = "ggsegGlasser"),
c("gg","ggplot"))
expect_is(ggseg(atlas = glasser, mapping=aes(fill=area),
position="stacked"), c("gg","ggplot"))
expect_is(ggseg(atlas = glasser, mapping=aes(fill=area), adapt_scales = F ),c("gg","ggplot"))
})
# ggseg3d ----
context("test-ggseg3d")
test_that("Check that mesh atlases are working", {
expect_is(
ggseg3d(atlas=glasser_3d),
c("plotly", "htmlwidget")
)
})
context("test-ggseg3d-atlas")
test_that("atlases are true ggseg3d atlases", {
expect_true(is_ggseg3d_atlas(glasser_3d))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.