View source: R/region_name_to_mni.R
region_name_to_mni | R Documentation |
Input a brain region name, output the corresponding MNI coordinates.
This is the inverse function of the function mni_to_region_name()
.
region_name_to_mni(region_names, template = "aal")
region_names |
A character vector which indeicates the brain region names of interest.
Use |
template |
One character value which indicates the templates to use
( |
Return a list of data frames and each of them correspond to a template. Each data frame consists the MNI coordinates of the input brain region.
mni_to_region_name
list_brain_regions
# Get the MNI cooridnates of the right precentral region
# defined by AAL template
region_name_to_mni(region_names = "Precentral_R", template = "aal")
# Get the MNI cooridnates of both the right and left precentral region
# defined by AAL template
region_name_to_mni(
region_names = c("Precentral_R", "Precentral_L"),
template = "aal"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.