hemilist | R Documentation |
Simply runs list('lh' = lh_data, 'rh' = rh_data)
: A hemilist (short for hemisphere list) is just a named list with entries 'lh' and/or 'rh', which may contain anything. Hemilists are used as parameters and return values in many fsbrain
functions. The 'lh' and 'rh' keys typically contain surfaces or vectors of morphometry data.
hemilist(lh_data = NULL, rh_data = NULL)
lh_data |
something to wrap, typically some data for a hemisphere, e.g., a vector of morphometry data values. |
rh_data |
something to wrap, typically some data for a hemisphere, e.g., a vector of morphometry data values. |
named list, with the 'lh_data' in the 'lh' key and the 'rh_data' in the 'rh' key.
Other hemilist functions:
hemilist.derive.hemi()
,
hemilist.from.prefixed.list()
,
hemilist.get.combined.data()
,
hemilist.unwrap()
,
hemilist.wrap()
,
is.hemilist()
lh_data = rnorm(163842, 5.0, 1.0);
rh_data = rnorm(163842, 5.0, 1.0);
hl = hemilist(lh_data, rh_data);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.