CoSMoMVPA philosophy¶
Contents
Uniform representation of data¶
(This is inspired by PyMVPA).
volumetic fMRI, surface-based fMRI, MEEG timelocked, and MEEG time-frequency data is represented using the same structure
through external toolboxes and CoSMoMVPA conversion code, data can be mapped to and from CoSMoMVPA dataset representations (using cosmo fmri dataset, cosmo surface dataset, cosmo meeg dataset, cosmo map2fmri, cosmo map2surface, cosmo map2meeg)
Store data in matrix form along with additional attributes of the data¶
each row in the matrix is a sample, also referred to as pattern.
each column in the matrix has data for a single feature (e.g. voxel, surface node, timepoint for a channel).
each row and column can have additional attributes, called sample attributes (such as condition or acquisition run number) and feature attributes (such as voxel location)
- subsets of rows and columns (and the corresponding attributes) can be split or selected (optionally after matching), and combined), which makes many operations simple:
cross-validation using various partition scheme (odd-even, nfold, or more complicated) requires selecting a set of rows for training and a disjoint subset for testing.
ROI selection requires selecting a set of columns.
a searchlight is repeated ROI selection, where the selection can be defined in a neighborhood (in a sphere, time or frequency interval, set of channels, on the cortical surface, or a combination of these to form time-channel or time-channel-frequency searchlights).
Provide a common interface for typical MVPA measures¶
The following types of analyses are treated uniformly:
A searchlight analysis is as easy as ROI analysis¶
a searchlight is like a repeated ROI analysis, where data in each searchlight can be described by a neighborhood of features around a center feature.
this approach can be applied equally to volume-based fMRI, surface-based fMRI, and MEEG data (assuming a neighborhood can be defined for each feature).
a searchlight map is created simply by applying an MVPA measure to data in each searchlight.