| brain_join | R Documentation |
Performs a full join between user data and a brain atlas. Grouped data is handled automatically, producing one complete atlas per group.
brain_join(data, atlas, by = NULL)
data |
A data.frame with a column matching an atlas column (typically '"region"'). Can be grouped with [dplyr::group_by()]. |
atlas |
A 'ggseg_atlas' object or data.frame containing atlas data. |
by |
Character vector of column names to join by. If 'NULL' (default), columns are detected automatically. |
An 'sf' object if the atlas contains geometry, otherwise a tibble.
someData <- data.frame(
region = c(
"transverse temporal", "insula",
"precentral", "superior parietal"
),
p = sample(seq(0, .5, .001), 4),
stringsAsFactors = FALSE
)
brain_join(someData, dk())
brain_join(someData, dk(), "region")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.