nimare.meta.kernel.KernelTransformer

class KernelTransformer[source]

Bases: nimare.base.Transformer

Base class for modeled activation-generating methods in nimare.meta.kernel.

Coordinate-based meta-analyses leverage coordinates reported in neuroimaging papers to simulate the thresholded statistical maps from the original analyses. This generally involves convolving each coordinate with a kernel (typically a Gaussian or binary sphere) that may be weighted based on some additional measure, such as statistic value or sample size.

Notes

All extra (non-ijk) parameters for a given kernel should be overrideable as parameters to __init__, so we can access them with get_params() and also apply them to datasets with missing data.

get_params(deep=True)[source]

Get parameters for this estimator.

Parameters

deep (bool, optional) – If True, will return the parameters for this estimator and contained subobjects that are estimators.

Returns

params (dict) – Parameter names mapped to their values.

classmethod load(filename, compressed=True)[source]

Load a pickled class instance from file.

Parameters
  • filename (str) – Name of file containing object.

  • compressed (bool, optional) – If True, the file is assumed to be compressed and gzip will be used to load it. Otherwise, it will assume that the file is not compressed. Default = True.

Returns

obj (class object) – Loaded class object.

save(filename, compress=True)[source]

Pickle the class instance to the provided file.

Parameters
  • filename (str) – File to which object will be saved.

  • compress (bool, optional) – If True, the file will be compressed with gzip. Otherwise, the uncompressed version will be saved. Default = True.

set_params(**params)[source]

Set the parameters of this estimator.

The method works on simple estimators as well as on nested objects (such as pipelines). The latter have parameters of the form <component>__<parameter> so that it’s possible to update each component of a nested object.

Returns

self

transform(dataset, masker=None, return_type='image')[source]

Generate modeled activation images for each Contrast in dataset.

Parameters
  • dataset (nimare.dataset.Dataset or pandas.DataFrame) – Dataset for which to make images. Can be a DataFrame if necessary.

  • masker (img_like or None, optional) – Mask to apply to MA maps. Required if dataset is a DataFrame. If None (and dataset is a Dataset), the Dataset’s masker attribute will be used. Default is None.

  • return_type ({‘array’, ‘image’, ‘dataset’}, optional) – Whether to return a numpy array (‘array’), a list of niimgs (‘image’), or a Dataset with MA images saved as files (‘dataset’). Default is ‘image’.

Returns

imgs ((C x V) numpy.ndarray or list of nibabel.Nifti1Image or nimare.dataset.Dataset) – If return_type is ‘array’, a 2D numpy array (C x V), where C is contrast and V is voxel. If return_type is ‘image’, a list of modeled activation images (one for each of the Contrasts in the input dataset). If return_type is ‘dataset’, a new Dataset object with modeled activation images saved to files and referenced in the Dataset.images attribute.

Variables
  • filename_pattern (str) – Filename pattern for MA maps that will be saved by the transformer.

  • image_type (str) – Name of the corresponding column in the Dataset.images DataFrame.

Examples using nimare.meta.kernel.KernelTransformer