Work in Progress – This package is under active development and has not yet been officially released.
SUIT cerebellar lobular atlas for the ggseg ecosystem.
Installation
We recommend installing the ggseg-atlases through the ggseg r-universe:
options(repos = c(
ggseg = "https://ggseg.r-universe.dev",
CRAN = "https://cloud.r-project.org"
))
install.packages("ggsegSUIT")You can install this package from GitHub with:
# install.packages("pak")
pak::pak("ggseg/ggsegSUIT")SUIT atlas
library(ggseg)
library(ggsegSUIT)
library(ggplot2)
ggplot() +
geom_brain(
atlas = suit(),
mapping = aes(fill = label),
position = position_brain(. ~ view),
show.legend = FALSE
) +
scale_fill_manual(values = suit()$palette, na.value = "grey") +
theme_void() +
ggtitle("SUIT cerebellar lobular atlas")
Reference
Diedrichsen J et al. (2009). A probabilistic MR atlas of the human cerebellum. NeuroImage, 46(1), 39-46.
Code of Conduct
Please note that the ggsegSUIT project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.