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