View source: R/fsdir_abstraction_group.R
write.group.morph.standard.sf | R Documentation |
Write morphometry data for a group into a single MGH or MGZ file. In neuroimaging, the first 3 dimensions in the resulting 4D volume file are space, and the 4th is the time/subject dimension.
write.group.morph.standard.sf(filepath, data)
filepath |
character string, path to the target file, should end with '.mgh' or '.mgz'. |
data |
numerical 2D matrix, with the rows identifying the subjects and the columns identifying the vertices. |
The file will contain no information on the subject identifiers. The data can be for one or both hemispheres. See group.morph.standard.sf
to read the data back into R.
## Not run:
# create per-vertex data for 5 subjects.
mat = matrix(rnorm(5 * 163842, 3.0, 0.5), nrow=5, ncol = 163842);
fsbrain::write.group.morph.standard.sf("~/group_pvd.mgz", mat);
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.