nimare.meta.ibma.Fishers
- class Fishers(*args, **kwargs)[source]
Bases:
nimare.base.MetaEstimatorAn image-based meta-analytic test using t- or z-statistic images.
Requires z-statistic images, but will be extended to work with t-statistic images as well.
Notes
Requires
zimages.Warning
Masking approaches which average across voxels (e.g., NiftiLabelsMaskers) will result in invalid results. It cannot be used with these types of maskers.
All image-based meta-analysis estimators adopt an aggressive masking strategy, in which any voxels with a value of zero in any of the input maps will be removed from the analysis.
References
Fisher, R. A. (1934). Statistical methods for research workers. Statistical methods for research workers., (5th Ed). https://www.cabdirect.org/cabdirect/abstract/19351601205
See also
pymare.estimators.FisherCombinationTestThe PyMARE estimator called by this class.
- fit(dataset, drop_invalid=True)[source]
Fit Estimator to Dataset.
- Parameters
- Returns
MetaResult– Results of Estimator fitting.- Variables
inputs_ (
dict) – Inputs used in _fit.
Notes
The
fitmethod is a light wrapper that runs input validation and preprocessing before fitting the actual model. Estimators’ individual “fitting” methods are implemented as_fit, although users should callfit.