nimare 0.4.2rc4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- benchmarks/__init__.py +0 -0
- benchmarks/bench_cbma.py +57 -0
- nimare/__init__.py +45 -0
- nimare/_version.py +21 -0
- nimare/annotate/__init__.py +21 -0
- nimare/annotate/cogat.py +213 -0
- nimare/annotate/gclda.py +924 -0
- nimare/annotate/lda.py +147 -0
- nimare/annotate/text.py +75 -0
- nimare/annotate/utils.py +87 -0
- nimare/base.py +217 -0
- nimare/cli.py +124 -0
- nimare/correct.py +462 -0
- nimare/dataset.py +685 -0
- nimare/decode/__init__.py +33 -0
- nimare/decode/base.py +115 -0
- nimare/decode/continuous.py +462 -0
- nimare/decode/discrete.py +753 -0
- nimare/decode/encode.py +110 -0
- nimare/decode/utils.py +44 -0
- nimare/diagnostics.py +510 -0
- nimare/estimator.py +139 -0
- nimare/extract/__init__.py +19 -0
- nimare/extract/extract.py +466 -0
- nimare/extract/utils.py +295 -0
- nimare/generate.py +331 -0
- nimare/io.py +635 -0
- nimare/meta/__init__.py +39 -0
- nimare/meta/cbma/__init__.py +6 -0
- nimare/meta/cbma/ale.py +951 -0
- nimare/meta/cbma/base.py +947 -0
- nimare/meta/cbma/mkda.py +1361 -0
- nimare/meta/cbmr.py +970 -0
- nimare/meta/ibma.py +1683 -0
- nimare/meta/kernel.py +501 -0
- nimare/meta/models.py +1199 -0
- nimare/meta/utils.py +494 -0
- nimare/nimads.py +492 -0
- nimare/reports/__init__.py +24 -0
- nimare/reports/base.py +664 -0
- nimare/reports/default.yml +123 -0
- nimare/reports/figures.py +651 -0
- nimare/reports/report.tpl +160 -0
- nimare/resources/__init__.py +1 -0
- nimare/resources/atlases/Harvard-Oxford-LICENSE +93 -0
- nimare/resources/atlases/HarvardOxford-cort-maxprob-thr25-2mm.nii.gz +0 -0
- nimare/resources/database_file_manifest.json +142 -0
- nimare/resources/english_spellings.csv +1738 -0
- nimare/resources/filenames.json +32 -0
- nimare/resources/neurosynth_laird_studies.json +58773 -0
- nimare/resources/neurosynth_stoplist.txt +396 -0
- nimare/resources/nidm_pain_dset.json +1349 -0
- nimare/resources/references.bib +541 -0
- nimare/resources/semantic_knowledge_children.txt +325 -0
- nimare/resources/semantic_relatedness_children.txt +249 -0
- nimare/resources/templates/MNI152_2x2x2_brainmask.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_T1w.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-01_desc-brain_mask.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_T1w.nii.gz +0 -0
- nimare/resources/templates/tpl-MNI152NLin6Asym_res-02_desc-brain_mask.nii.gz +0 -0
- nimare/results.py +225 -0
- nimare/stats.py +276 -0
- nimare/tests/__init__.py +1 -0
- nimare/tests/conftest.py +229 -0
- nimare/tests/data/amygdala_roi.nii.gz +0 -0
- nimare/tests/data/data-neurosynth_version-7_coordinates.tsv.gz +0 -0
- nimare/tests/data/data-neurosynth_version-7_metadata.tsv.gz +0 -0
- nimare/tests/data/data-neurosynth_version-7_vocab-terms_source-abstract_type-tfidf_features.npz +0 -0
- nimare/tests/data/data-neurosynth_version-7_vocab-terms_vocabulary.txt +100 -0
- nimare/tests/data/neurosynth_dset.json +2868 -0
- nimare/tests/data/neurosynth_laird_studies.json +58773 -0
- nimare/tests/data/nidm_pain_dset.json +1349 -0
- nimare/tests/data/nimads_annotation.json +1 -0
- nimare/tests/data/nimads_studyset.json +1 -0
- nimare/tests/data/test_baseline.txt +2 -0
- nimare/tests/data/test_pain_dataset.json +1278 -0
- nimare/tests/data/test_pain_dataset_multiple_contrasts.json +1242 -0
- nimare/tests/data/test_sleuth_file.txt +18 -0
- nimare/tests/data/test_sleuth_file2.txt +10 -0
- nimare/tests/data/test_sleuth_file3.txt +5 -0
- nimare/tests/data/test_sleuth_file4.txt +5 -0
- nimare/tests/data/test_sleuth_file5.txt +5 -0
- nimare/tests/test_annotate_cogat.py +32 -0
- nimare/tests/test_annotate_gclda.py +86 -0
- nimare/tests/test_annotate_lda.py +27 -0
- nimare/tests/test_dataset.py +99 -0
- nimare/tests/test_decode_continuous.py +132 -0
- nimare/tests/test_decode_discrete.py +92 -0
- nimare/tests/test_diagnostics.py +168 -0
- nimare/tests/test_estimator_performance.py +385 -0
- nimare/tests/test_extract.py +46 -0
- nimare/tests/test_generate.py +247 -0
- nimare/tests/test_io.py +240 -0
- nimare/tests/test_meta_ale.py +298 -0
- nimare/tests/test_meta_cbmr.py +295 -0
- nimare/tests/test_meta_ibma.py +240 -0
- nimare/tests/test_meta_kernel.py +209 -0
- nimare/tests/test_meta_mkda.py +234 -0
- nimare/tests/test_nimads.py +21 -0
- nimare/tests/test_reports.py +110 -0
- nimare/tests/test_stats.py +101 -0
- nimare/tests/test_transforms.py +272 -0
- nimare/tests/test_utils.py +200 -0
- nimare/tests/test_workflows.py +221 -0
- nimare/tests/utils.py +126 -0
- nimare/transforms.py +907 -0
- nimare/utils.py +1367 -0
- nimare/workflows/__init__.py +14 -0
- nimare/workflows/base.py +189 -0
- nimare/workflows/cbma.py +165 -0
- nimare/workflows/ibma.py +108 -0
- nimare/workflows/macm.py +77 -0
- nimare/workflows/misc.py +65 -0
- nimare-0.4.2rc4.dist-info/LICENSE +21 -0
- nimare-0.4.2rc4.dist-info/METADATA +124 -0
- nimare-0.4.2rc4.dist-info/RECORD +119 -0
- nimare-0.4.2rc4.dist-info/WHEEL +5 -0
- nimare-0.4.2rc4.dist-info/entry_points.txt +2 -0
- nimare-0.4.2rc4.dist-info/top_level.txt +2 -0
@@ -0,0 +1,541 @@
|
|
1
|
+
@article{10.3389/fninf.2014.00014,
|
2
|
+
title={Machine learning for neuroimaging with scikit-learn},
|
3
|
+
author={Abraham, Alexandre and Pedregosa, Fabian and Eickenberg, Michael and Gervais, Philippe and Mueller, Andreas and Kossaifi, Jean and Gramfort, Alexandre and Thirion, Bertrand and Varoquaux, Gael},
|
4
|
+
journal={Frontiers in Neuroinformatics},
|
5
|
+
volume={8},
|
6
|
+
year={2014},
|
7
|
+
url={https://www.frontiersin.org/article/10.3389/fninf.2014.00014},
|
8
|
+
doi={10.3389/fninf.2014.00014},
|
9
|
+
issn={1662-5196}
|
10
|
+
}
|
11
|
+
|
12
|
+
@article{amft2015definition,
|
13
|
+
title={Definition and characterization of an extended social-affective default network},
|
14
|
+
author={Amft, Maren and Bzdok, Danilo and Laird, Angela R and Fox, Peter T and Schilbach, Leonhard and Eickhoff, Simon B},
|
15
|
+
journal={Brain Structure and Function},
|
16
|
+
volume={220},
|
17
|
+
number={2},
|
18
|
+
pages={1031--1049},
|
19
|
+
year={2015},
|
20
|
+
publisher={Springer},
|
21
|
+
url={https://doi.org/10.1007/s00429-013-0698-0},
|
22
|
+
doi={10.1007/s00429-013-0698-0}
|
23
|
+
}
|
24
|
+
|
25
|
+
@article{benjamini1995controlling,
|
26
|
+
title={Controlling the false discovery rate: a practical and powerful approach to multiple testing},
|
27
|
+
author={Benjamini, Yoav and Hochberg, Yosef},
|
28
|
+
journal={Journal of the Royal statistical society: series B (Methodological)},
|
29
|
+
volume={57},
|
30
|
+
number={1},
|
31
|
+
pages={289--300},
|
32
|
+
year={1995},
|
33
|
+
publisher={Wiley Online Library},
|
34
|
+
url={https://doi.org/10.1111/j.2517-6161.1995.tb02031.x},
|
35
|
+
doi={10.1111/j.2517-6161.1995.tb02031.x}
|
36
|
+
}
|
37
|
+
|
38
|
+
@article{benjamini2001control,
|
39
|
+
author={Yoav Benjamini and Daniel Yekutieli},
|
40
|
+
title={The control of the false discovery rate in multiple testing under dependency},
|
41
|
+
volume={29},
|
42
|
+
journal={The Annals of Statistics},
|
43
|
+
number={4},
|
44
|
+
publisher={Institute of Mathematical Statistics},
|
45
|
+
pages={1165 -- 1188},
|
46
|
+
year={2001},
|
47
|
+
doi={10.1214/aos/1013699998},
|
48
|
+
url={https://doi.org/10.1214/aos/1013699998}
|
49
|
+
}
|
50
|
+
|
51
|
+
@article{blei2003latent,
|
52
|
+
title={Latent dirichlet allocation},
|
53
|
+
author={Blei, David M and Ng, Andrew Y and Jordan, Michael I},
|
54
|
+
journal={Journal of machine Learning research},
|
55
|
+
volume={3},
|
56
|
+
number={Jan},
|
57
|
+
pages={993--1022},
|
58
|
+
year={2003},
|
59
|
+
url={https://dl.acm.org/doi/10.5555/944919.944937}
|
60
|
+
}
|
61
|
+
|
62
|
+
@article{bonferroni1936teoria,
|
63
|
+
title={Teoria statistica delle classi e calcolo delle probabilita},
|
64
|
+
author={Bonferroni, Carlo},
|
65
|
+
journal={Pubblicazioni del R Istituto Superiore di Scienze Economiche e Commericiali di Firenze},
|
66
|
+
volume={8},
|
67
|
+
pages={3--62},
|
68
|
+
year={1936}
|
69
|
+
}
|
70
|
+
|
71
|
+
@article{brockwell2001comparison,
|
72
|
+
title={A comparison of statistical methods for meta-analysis},
|
73
|
+
author={Brockwell, Sarah E and Gordon, Ian R},
|
74
|
+
journal={Statistics in medicine},
|
75
|
+
volume={20},
|
76
|
+
number={6},
|
77
|
+
pages={825--840},
|
78
|
+
year={2001},
|
79
|
+
publisher={Wiley Online Library},
|
80
|
+
url={https://doi.org/10.1002/sim.650},
|
81
|
+
doi={10.1002/sim.650}
|
82
|
+
}
|
83
|
+
|
84
|
+
@article{bullmore1999global,
|
85
|
+
title={Global, voxel, and cluster tests, by theory and permutation, for a difference between two groups of structural MR images of the brain},
|
86
|
+
author={Bullmore, Edward T and Suckling, John and Overmeyer, Stephan and Rabe-Hesketh, Sophia and Taylor, Eric and Brammer, Michael J},
|
87
|
+
journal={IEEE transactions on medical imaging},
|
88
|
+
volume={18},
|
89
|
+
number={1},
|
90
|
+
pages={32--42},
|
91
|
+
year={1999},
|
92
|
+
publisher={IEEE},
|
93
|
+
url={https://doi.org/10.1109/42.750253},
|
94
|
+
doi={10.1109/42.750253}
|
95
|
+
}
|
96
|
+
|
97
|
+
@article{dersimonian1986meta,
|
98
|
+
title={Meta-analysis in clinical trials},
|
99
|
+
author={DerSimonian, Rebecca and Laird, Nan},
|
100
|
+
journal={Controlled clinical trials},
|
101
|
+
volume={7},
|
102
|
+
number={3},
|
103
|
+
pages={177--188},
|
104
|
+
year={1986},
|
105
|
+
publisher={Elsevier}
|
106
|
+
}
|
107
|
+
|
108
|
+
@article{eickhoff2010anatomical,
|
109
|
+
title={Anatomical and functional connectivity of cytoarchitectonic areas within the human parietal operculum},
|
110
|
+
author={Eickhoff, Simon B and Jbabdi, Saad and Caspers, Svenja and Laird, Angela R and Fox, Peter T and Zilles, Karl and Behrens, Timothy EJ},
|
111
|
+
journal={Journal of Neuroscience},
|
112
|
+
volume={30},
|
113
|
+
number={18},
|
114
|
+
pages={6409--6421},
|
115
|
+
year={2010},
|
116
|
+
publisher={Soc Neuroscience},
|
117
|
+
url={https://doi.org/10.1523/JNEUROSCI.5664-09.2010},
|
118
|
+
doi={10.1523/JNEUROSCI.5664-09.2010}
|
119
|
+
}
|
120
|
+
|
121
|
+
@article{eickhoff2012activation,
|
122
|
+
title={Activation likelihood estimation meta-analysis revisited},
|
123
|
+
author={Eickhoff, Simon B and Bzdok, Danilo and Laird, Angela R and Kurth, Florian and Fox, Peter T},
|
124
|
+
journal={Neuroimage},
|
125
|
+
volume={59},
|
126
|
+
number={3},
|
127
|
+
pages={2349--2361},
|
128
|
+
year={2012},
|
129
|
+
publisher={Elsevier},
|
130
|
+
url={https://doi.org/10.1016/j.neuroimage.2011.09.017},
|
131
|
+
doi={10.1016/j.neuroimage.2011.09.017}
|
132
|
+
}
|
133
|
+
|
134
|
+
@article{eickhoff2016behavior,
|
135
|
+
title={Behavior, sensitivity, and power of activation likelihood estimation characterized by massive empirical simulation},
|
136
|
+
author={Eickhoff, Simon B and Nichols, Thomas E and Laird, Angela R and Hoffstaedter, Felix and Amunts, Katrin and Fox, Peter T and Bzdok, Danilo and Eickhoff, Claudia R},
|
137
|
+
journal={Neuroimage},
|
138
|
+
volume={137},
|
139
|
+
pages={70--85},
|
140
|
+
year={2016},
|
141
|
+
publisher={Elsevier},
|
142
|
+
url={https://doi.org/10.1016/j.neuroimage.2016.04.072},
|
143
|
+
doi={10.1016/j.neuroimage.2016.04.072}
|
144
|
+
}
|
145
|
+
|
146
|
+
@article{enge2021meta,
|
147
|
+
title={A meta-analysis of fMRI studies of semantic cognition in children},
|
148
|
+
author={Enge, Alexander and Rahman, Rasha Abdel and Skeide, Michael A},
|
149
|
+
journal={NeuroImage},
|
150
|
+
volume={241},
|
151
|
+
pages={118436},
|
152
|
+
year={2021},
|
153
|
+
publisher={Elsevier},
|
154
|
+
url={https://doi.org/10.1016/j.neuroimage.2021.118436},
|
155
|
+
doi={10.1016/j.neuroimage.2021.118436}
|
156
|
+
}
|
157
|
+
|
158
|
+
@article{fisher1946statistical,
|
159
|
+
title={Statistical methods for research workers.},
|
160
|
+
author={Fisher, Ronald Aylmer and others},
|
161
|
+
journal={Statistical methods for research workers.},
|
162
|
+
number={10th. ed.},
|
163
|
+
year={1946},
|
164
|
+
publisher={Oliver and Boyd}
|
165
|
+
}
|
166
|
+
|
167
|
+
@article{frahm2022evaluation,
|
168
|
+
author={Frahm, Lennart and Cieslik, Edna C. and Hoffstaedter, Felix and Satterthwaite, Theodore D. and Fox, Peter T. and Langner, Robert and Eickhoff, Simon B.},
|
169
|
+
title={Evaluation of thresholding methods for activation likelihood estimation meta-analysis via large-scale simulations},
|
170
|
+
journal={Human Brain Mapping},
|
171
|
+
volume={n/a},
|
172
|
+
number={n/a},
|
173
|
+
pages={},
|
174
|
+
year={2022},
|
175
|
+
keywords={family-wise error, FWE, multiple comparison correction, neuroimaging meta-analysis, significance thresholding, threshold-free cluster enhancement cluster extent},
|
176
|
+
doi={10.1002/hbm.25898},
|
177
|
+
url={https://onlinelibrary.wiley.com/doi/abs/10.1002/hbm.25898},
|
178
|
+
abstract={In recent neuroimaging studies, threshold-free cluster enhancement (TFCE) gained popularity as a sophisticated thresholding method for statistical inference. It was shown to feature higher sensitivity than the frequently used approach of controlling the cluster-level family-wise error (cFWE) and it does not require setting a cluster-forming threshold at voxel level. Here, we examined the applicability of TFCE to a widely used method for coordinate-based neuroimaging meta-analysis, Activation Likelihood Estimation (ALE), by means of large-scale simulations. We created over 200,000 artificial meta-analysis datasets by independently varying the total number of experiments included and the amount of spatial convergence across experiments. Next, we applied ALE to all datasets and compared the performance of TFCE to both voxel-level and cluster-level FWE correction approaches. All three multiple-comparison correction methods yielded valid results, with only about 5\% of the significant clusters being based on spurious convergence, which corresponds to the nominal level the methods were controlling for. On average, TFCE's sensitivity was comparable to that of cFWE correction, but it was slightly worse for a subset of parameter combinations, even after TFCE parameter optimization. cFWE yielded the largest significant clusters, closely followed by TFCE, while voxel-level FWE correction yielded substantially smaller clusters, showcasing its high spatial specificity. Given that TFCE does not outperform the standard cFWE correction but is computationally much more expensive, we conclude that employing TFCE for ALE cannot be recommended to the general user.}
|
179
|
+
}
|
180
|
+
|
181
|
+
@article{freedman1983nonstochastic,
|
182
|
+
title={A nonstochastic interpretation of reported significance levels},
|
183
|
+
author={Freedman, David and Lane, David},
|
184
|
+
journal={Journal of Business \& Economic Statistics},
|
185
|
+
volume={1},
|
186
|
+
number={4},
|
187
|
+
pages={292--298},
|
188
|
+
year={1983},
|
189
|
+
publisher={Taylor \& Francis}
|
190
|
+
}
|
191
|
+
|
192
|
+
@book{hedges2014statistical,
|
193
|
+
title={Statistical methods for meta-analysis},
|
194
|
+
author={Hedges, Larry V and Olkin, Ingram},
|
195
|
+
year={2014},
|
196
|
+
publisher={Academic press}
|
197
|
+
}
|
198
|
+
|
199
|
+
@article{hughett2008accurate,
|
200
|
+
title={Accurate computation of the F-to-z and t-to-z transforms for large arguments},
|
201
|
+
author={Hughett, Paul},
|
202
|
+
journal={Journal of Statistical Software},
|
203
|
+
volume={23},
|
204
|
+
pages={1--5},
|
205
|
+
year={2008},
|
206
|
+
url={https://doi.org/10.18637/jss.v023.c01},
|
207
|
+
doi={10.18637/jss.v023.c01}
|
208
|
+
}
|
209
|
+
|
210
|
+
@article{kosmidis2017improving,
|
211
|
+
title={Improving the accuracy of likelihood-based inference in meta-analysis and meta-regression},
|
212
|
+
author={Kosmidis, Ioannis and Guolo, Annamaria and Varin, Cristiano},
|
213
|
+
journal={Biometrika},
|
214
|
+
volume={104},
|
215
|
+
number={2},
|
216
|
+
pages={489--496},
|
217
|
+
year={2017},
|
218
|
+
publisher={Oxford University Press},
|
219
|
+
url={https://doi.org/10.1093/biomet/asx001},
|
220
|
+
doi={10.1093/biomet/asx001}
|
221
|
+
}
|
222
|
+
|
223
|
+
@article{laird2005ale,
|
224
|
+
title={ALE meta-analysis: Controlling the false discovery rate and performing statistical contrasts},
|
225
|
+
author={Laird, Angela R and Fox, P Mickle and Price, Cathy J and Glahn, David C and Uecker, Angela M and Lancaster, Jack L and Turkeltaub, Peter E and Kochunov, Peter and Fox, Peter T},
|
226
|
+
journal={Human brain mapping},
|
227
|
+
volume={25},
|
228
|
+
number={1},
|
229
|
+
pages={155--164},
|
230
|
+
year={2005},
|
231
|
+
publisher={Wiley Online Library},
|
232
|
+
url={https://doi.org/10.1002/hbm.20136},
|
233
|
+
doi={10.1002/hbm.20136}
|
234
|
+
}
|
235
|
+
|
236
|
+
@article{laird2009investigating,
|
237
|
+
title={Investigating the functional heterogeneity of the default mode network using coordinate-based meta-analytic modeling},
|
238
|
+
author={Laird, Angela R and Eickhoff, Simon B and Li, Karl and Robin, Donald A and Glahn, David C and Fox, Peter T},
|
239
|
+
journal={Journal of Neuroscience},
|
240
|
+
volume={29},
|
241
|
+
number={46},
|
242
|
+
pages={14496--14505},
|
243
|
+
year={2009},
|
244
|
+
publisher={Soc Neuroscience},
|
245
|
+
url={https://doi.org/10.1523/JNEUROSCI.4004-09.2009},
|
246
|
+
doi={10.1523/JNEUROSCI.4004-09.2009}
|
247
|
+
}
|
248
|
+
|
249
|
+
@article{langner2014meta,
|
250
|
+
title={Meta-analytic connectivity modeling revisited: controlling for activation base rates},
|
251
|
+
author={Langner, Robert and Rottschy, Claudia and Laird, Angela R and Fox, Peter T and Eickhoff, Simon B},
|
252
|
+
journal={Neuroimage},
|
253
|
+
volume={99},
|
254
|
+
pages={559--570},
|
255
|
+
year={2014},
|
256
|
+
publisher={Elsevier},
|
257
|
+
url={https://doi.org/10.1016/j.neuroimage.2014.06.007},
|
258
|
+
doi={10.1016/j.neuroimage.2014.06.007}
|
259
|
+
}
|
260
|
+
|
261
|
+
@article{newman2009distributed,
|
262
|
+
title={Distributed algorithms for topic models.},
|
263
|
+
author={Newman, David and Asuncion, Arthur and Smyth, Padhraic and Welling, Max},
|
264
|
+
journal={Journal of Machine Learning Research},
|
265
|
+
volume={10},
|
266
|
+
number={8},
|
267
|
+
year={2009},
|
268
|
+
url={http://jmlr.org/papers/v10/newman09a.html}
|
269
|
+
}
|
270
|
+
|
271
|
+
@article{nichols2005valid,
|
272
|
+
title={Valid conjunction inference with the minimum statistic},
|
273
|
+
author={Nichols, Thomas and Brett, Matthew and Andersson, Jesper and Wager, Tor and Poline, Jean-Baptiste},
|
274
|
+
journal={Neuroimage},
|
275
|
+
volume={25},
|
276
|
+
number={3},
|
277
|
+
pages={653--660},
|
278
|
+
year={2005},
|
279
|
+
publisher={Elsevier},
|
280
|
+
url={https://doi.org/10.1016/j.neuroimage.2004.12.005},
|
281
|
+
doi={10.1016/j.neuroimage.2004.12.005}
|
282
|
+
}
|
283
|
+
|
284
|
+
@article{poldrack2011cognitive,
|
285
|
+
title={The cognitive atlas: toward a knowledge foundation for cognitive neuroscience},
|
286
|
+
author={Poldrack, Russell A and Kittur, Aniket and Kalar, Donald and Miller, Eric and Seppa, Christian and Gil, Yolanda and Parker, D Stott and Sabb, Fred W and Bilder, Robert M},
|
287
|
+
journal={Frontiers in neuroinformatics},
|
288
|
+
volume={5},
|
289
|
+
pages={17},
|
290
|
+
year={2011},
|
291
|
+
publisher={Frontiers},
|
292
|
+
url={https://doi.org/10.3389/fninf.2011.00017},
|
293
|
+
doi={10.3389/fninf.2011.00017}
|
294
|
+
}
|
295
|
+
|
296
|
+
@article{poldrack2012discovering,
|
297
|
+
title={Discovering relations between mind, brain, and mental disorders using topic mapping},
|
298
|
+
author={Poldrack, Russell A and Mumford, Jeanette A and Schonberg, Tom and Kalar, Donald and Barman, Bishal and Yarkoni, Tal},
|
299
|
+
year={2012},
|
300
|
+
publisher={Public Library of Science San Francisco, USA},
|
301
|
+
journal={PLOS Computational Biology},
|
302
|
+
url={https://doi.org/10.1371/journal.pcbi.1002707},
|
303
|
+
doi={10.1371/journal.pcbi.1002707}
|
304
|
+
}
|
305
|
+
|
306
|
+
@article{robinson2010metaanalytic,
|
307
|
+
title={Metaanalytic connectivity modeling: delineating the functional connectivity of the human amygdala},
|
308
|
+
author={Robinson, Jennifer L and Laird, Angela R and Glahn, David C and Lovallo, William R and Fox, Peter T},
|
309
|
+
journal={Human brain mapping},
|
310
|
+
volume={31},
|
311
|
+
number={2},
|
312
|
+
pages={173--184},
|
313
|
+
year={2010},
|
314
|
+
publisher={Wiley Online Library},
|
315
|
+
url={https://doi.org/10.1002/hbm.20854},
|
316
|
+
doi={10.1002/hbm.20854}
|
317
|
+
}
|
318
|
+
|
319
|
+
@article{rubin2017decoding,
|
320
|
+
title={Decoding brain activity using a large-scale probabilistic functional-anatomical atlas of human cognition},
|
321
|
+
author={Rubin, Timothy N and Koyejo, Oluwasanmi and Gorgolewski, Krzysztof J and Jones, Michael N and Poldrack, Russell A and Yarkoni, Tal},
|
322
|
+
journal={PLoS computational biology},
|
323
|
+
volume={13},
|
324
|
+
number={10},
|
325
|
+
pages={e1005649},
|
326
|
+
year={2017},
|
327
|
+
publisher={Public Library of Science San Francisco, CA USA},
|
328
|
+
url={https://doi.org/10.1371/journal.pcbi.1005649},
|
329
|
+
doi={10.1371/journal.pcbi.1005649}
|
330
|
+
}
|
331
|
+
|
332
|
+
@article{Salo2022,
|
333
|
+
doi = {10.55458/neurolibre.00007},
|
334
|
+
url = {https://doi.org/10.55458/neurolibre.00007},
|
335
|
+
year = {2022},
|
336
|
+
publisher = {The Open Journal},
|
337
|
+
volume = {1},
|
338
|
+
number = {1},
|
339
|
+
pages = {7},
|
340
|
+
author = {Taylor Salo and Tal Yarkoni and Thomas E. Nichols and Jean-Baptiste Poline and Murat Bilgel and Katherine L. Bottenhorn and Dorota Jarecka and James D. Kent and Adam Kimbler and Dylan M. Nielson and Kendra M. Oudyk and Julio A. Peraza and Alexandre Pérez and Puck C. Reeders and Julio A. Yanes and Angela R. Laird},
|
341
|
+
title = {NiMARE: Neuroimaging Meta-Analysis Research Environment},
|
342
|
+
journal = {NeuroLibre}
|
343
|
+
}
|
344
|
+
|
345
|
+
@article{Salo2023,
|
346
|
+
doi = {10.52294/001c.87681},
|
347
|
+
url = {https://doi.org/10.52294/001c.87681},
|
348
|
+
year = {2023},
|
349
|
+
volume = {3},
|
350
|
+
pages = {1 - 32},
|
351
|
+
author = {Taylor Salo and Tal Yarkoni and Thomas E. Nichols and Jean-Baptiste Poline and Murat Bilgel and Katherine L. Bottenhorn and Dorota Jarecka and James D. Kent and Adam Kimbler and Dylan M. Nielson and Kendra M. Oudyk and Julio A. Peraza and Alexandre Pérez and Puck C. Reeders and Julio A. Yanes and Angela R. Laird},
|
352
|
+
title = {NiMARE: Neuroimaging Meta-Analysis Research Environment},
|
353
|
+
journal = {Aperture Neuro}
|
354
|
+
}
|
355
|
+
|
356
|
+
@article{shaffer1995multiple,
|
357
|
+
title={Multiple hypothesis testing},
|
358
|
+
author={Shaffer, Juliet Popper},
|
359
|
+
journal={Annual review of psychology},
|
360
|
+
volume={46},
|
361
|
+
number={1},
|
362
|
+
pages={561--584},
|
363
|
+
year={1995},
|
364
|
+
publisher={Annual Reviews 4139 El Camino Way, PO Box 10139, Palo Alto, CA 94303-0139, USA}
|
365
|
+
}
|
366
|
+
|
367
|
+
@article{smith2009threshold,
|
368
|
+
title={Threshold-free cluster enhancement: addressing problems of smoothing, threshold dependence and localisation in cluster inference},
|
369
|
+
author={Smith, Stephen M and Nichols, Thomas E},
|
370
|
+
journal={Neuroimage},
|
371
|
+
volume={44},
|
372
|
+
number={1},
|
373
|
+
pages={83--98},
|
374
|
+
year={2009},
|
375
|
+
publisher={Elsevier},
|
376
|
+
url={https://doi.org/10.1016/j.neuroimage.2008.03.061},
|
377
|
+
doi={10.1016/j.neuroimage.2008.03.061}
|
378
|
+
}
|
379
|
+
|
380
|
+
@misc{sochat2015ttoz,
|
381
|
+
author = {Sochat, Vanessa},
|
382
|
+
title = {TtoZ Original Release},
|
383
|
+
month = oct,
|
384
|
+
year = 2015,
|
385
|
+
publisher = {Zenodo},
|
386
|
+
doi = {10.5281/zenodo.32508},
|
387
|
+
url = {https://doi.org/10.5281/zenodo.32508}
|
388
|
+
}
|
389
|
+
|
390
|
+
@article{stouffer1949american,
|
391
|
+
title={The american soldier: Adjustment during army life.(studies in social psychology in world war ii), vol. 1},
|
392
|
+
author={Stouffer, Samuel A and Suchman, Edward A and DeVinney, Leland C and Star, Shirley A and Williams Jr, Robin M},
|
393
|
+
journal={Studies in social psychology in World War II},
|
394
|
+
year={1949},
|
395
|
+
publisher={Princeton Univ. Press}
|
396
|
+
}
|
397
|
+
|
398
|
+
@article{turkeltaub2002meta,
|
399
|
+
title={Meta-analysis of the functional neuroanatomy of single-word reading: method and validation},
|
400
|
+
author={Turkeltaub, Peter E and Eden, Guinevere F and Jones, Karen M and Zeffiro, Thomas A},
|
401
|
+
journal={Neuroimage},
|
402
|
+
volume={16},
|
403
|
+
number={3},
|
404
|
+
pages={765--780},
|
405
|
+
year={2002},
|
406
|
+
publisher={Elsevier},
|
407
|
+
url={https://doi.org/10.1006/nimg.2002.1131},
|
408
|
+
doi={10.1006/nimg.2002.1131}
|
409
|
+
}
|
410
|
+
|
411
|
+
@article{turkeltaub2012minimizing,
|
412
|
+
title={Minimizing within-experiment and within-group effects in activation likelihood estimation meta-analyses},
|
413
|
+
author={Turkeltaub, Peter E and Eickhoff, Simon B and Laird, Angela R and Fox, Mick and Wiener, Martin and Fox, Peter},
|
414
|
+
journal={Human brain mapping},
|
415
|
+
volume={33},
|
416
|
+
number={1},
|
417
|
+
pages={1--13},
|
418
|
+
year={2012},
|
419
|
+
publisher={Wiley Online Library},
|
420
|
+
url={https://doi.org/10.1002/hbm.21186},
|
421
|
+
doi={10.1002/hbm.21186}
|
422
|
+
}
|
423
|
+
|
424
|
+
@article{wager2003valence,
|
425
|
+
title={Valence, gender, and lateralization of functional brain anatomy in emotion: a meta-analysis of findings from neuroimaging},
|
426
|
+
author={Wager, Tor D and Phan, K Luan and Liberzon, Israel and Taylor, Stephan F},
|
427
|
+
journal={Neuroimage},
|
428
|
+
volume={19},
|
429
|
+
number={3},
|
430
|
+
pages={513--531},
|
431
|
+
year={2003},
|
432
|
+
publisher={Elsevier},
|
433
|
+
url={https://doi.org/10.1016/S1053-8119(03)00078-8},
|
434
|
+
doi={10.1016/S1053-8119(03)00078-8}
|
435
|
+
}
|
436
|
+
|
437
|
+
@article{wager2004neuroimaging,
|
438
|
+
title={Neuroimaging studies of shifting attention: a meta-analysis},
|
439
|
+
author={Wager, Tor D and Jonides, John and Reading, Susan},
|
440
|
+
journal={Neuroimage},
|
441
|
+
volume={22},
|
442
|
+
number={4},
|
443
|
+
pages={1679--1693},
|
444
|
+
year={2004},
|
445
|
+
publisher={Elsevier},
|
446
|
+
url={https://doi.org/10.1016/j.neuroimage.2004.03.052},
|
447
|
+
doi={10.1016/j.neuroimage.2004.03.052}
|
448
|
+
}
|
449
|
+
|
450
|
+
@article{wager2007meta,
|
451
|
+
title={Meta-analysis of functional neuroimaging data: current and future directions},
|
452
|
+
author={Wager, Tor D and Lindquist, Martin and Kaplan, Lauren},
|
453
|
+
journal={Social cognitive and affective neuroscience},
|
454
|
+
volume={2},
|
455
|
+
number={2},
|
456
|
+
pages={150--158},
|
457
|
+
year={2007},
|
458
|
+
publisher={Oxford University Press},
|
459
|
+
url={https://doi.org/10.1093/scan/nsm015},
|
460
|
+
doi={10.1093/scan/nsm015}
|
461
|
+
}
|
462
|
+
|
463
|
+
@article{yarkoni2011large,
|
464
|
+
title={Large-scale automated synthesis of human functional neuroimaging data},
|
465
|
+
author={Yarkoni, Tal and Poldrack, Russell A and Nichols, Thomas E and Van Essen, David C and Wager, Tor D},
|
466
|
+
journal={Nature methods},
|
467
|
+
volume={8},
|
468
|
+
number={8},
|
469
|
+
pages={665--670},
|
470
|
+
year={2011},
|
471
|
+
publisher={Nature Publishing Group},
|
472
|
+
url={https://doi.org/10.1038/nmeth.1635},
|
473
|
+
doi={10.1038/nmeth.1635}
|
474
|
+
}
|
475
|
+
|
476
|
+
@article{zaykin2011optimally,
|
477
|
+
title={Optimally weighted Z-test is a powerful method for combining probabilities in meta-analysis},
|
478
|
+
author={Zaykin, Dmitri V},
|
479
|
+
journal={Journal of evolutionary biology},
|
480
|
+
volume={24},
|
481
|
+
number={8},
|
482
|
+
pages={1836--1841},
|
483
|
+
year={2011},
|
484
|
+
publisher={Wiley Online Library},
|
485
|
+
url={https://doi.org/10.1111/j.1420-9101.2011.02297.x},
|
486
|
+
doi={10.1111/j.1420-9101.2011.02297.x}
|
487
|
+
}
|
488
|
+
|
489
|
+
@article{zhang2009cluster,
|
490
|
+
title={Cluster mass inference via random field theory},
|
491
|
+
author={Zhang, Hui and Nichols, Thomas E and Johnson, Timothy D},
|
492
|
+
journal={Neuroimage},
|
493
|
+
volume={44},
|
494
|
+
number={1},
|
495
|
+
pages={51--61},
|
496
|
+
year={2009},
|
497
|
+
publisher={Elsevier},
|
498
|
+
url={https://doi.org/10.1016/j.neuroimage.2008.08.017},
|
499
|
+
doi={10.1016/j.neuroimage.2008.08.017}
|
500
|
+
}
|
501
|
+
|
502
|
+
@article{eisenberg1966general,
|
503
|
+
title={A general use of the Poisson approximation for binomial events, with application to bacterial endocarditis data},
|
504
|
+
author={Eisenberg, Herbert B and Geoghagen, Randolph RM and Walsh, John E},
|
505
|
+
journal={Biometrics},
|
506
|
+
pages={74--82},
|
507
|
+
year={1966},
|
508
|
+
publisher={JSTOR}
|
509
|
+
}
|
510
|
+
|
511
|
+
@article{barndorff1969negative,
|
512
|
+
title={Negative binomial processes},
|
513
|
+
author={Barndorff-Nielsen, Ole and Yeo, GF},
|
514
|
+
journal={Journal of Applied Probability},
|
515
|
+
volume={6},
|
516
|
+
number={3},
|
517
|
+
pages={633--647},
|
518
|
+
year={1969},
|
519
|
+
publisher={Cambridge University Press}
|
520
|
+
}
|
521
|
+
|
522
|
+
@article{geoffroy2001poisson,
|
523
|
+
title={A Poisson-gamma model for two-stage cluster sampling data},
|
524
|
+
author={Geoffroy, Pedro and Weerakkody, Govinda},
|
525
|
+
journal={Journal of Statistical Computation and Simulation},
|
526
|
+
volume={68},
|
527
|
+
number={2},
|
528
|
+
pages={161--172},
|
529
|
+
year={2001},
|
530
|
+
publisher={Taylor \& Francis}
|
531
|
+
}
|
532
|
+
|
533
|
+
@article {bossier2019,
|
534
|
+
author = {Bossier, Han and Nichols, Thomas E. and Moerkerke, Beatrijs},
|
535
|
+
title = {Standardized Effect Sizes and Image-Based Meta-Analytical Approaches for fMRI Data},
|
536
|
+
elocation-id = {865881},
|
537
|
+
year = {2019},
|
538
|
+
doi = {10.1101/865881},
|
539
|
+
publisher = {Cold Spring Harbor Laboratory},
|
540
|
+
journal = {bioRxiv}
|
541
|
+
}
|