Test combinations of kernels and estimators for coordinate-based meta-analyses.

Collection of NIDM-Results packs downloaded from Neurovault collection 1425, uploaded by Dr. Camille Maumet.

Note

Creation of the Dataset from the NIDM-Results packs was done with custom code. The Results packs for collection 1425 are not completely NIDM-Results-compliant, so the nidmresults library could not be used to facilitate data extraction.

import os

from nilearn.plotting import plot_stat_map

import nimare
from nimare.tests.utils import get_test_data_path

Load Dataset

dset_file = os.path.join(get_test_data_path(), "nidm_pain_dset.json")
dset = nimare.dataset.Dataset(dset_file)

mask_img = dset.masker.mask_img

List possible kernel transformers

MKDA density analysis

for kt_name, kt in kernel_transformers.items():
    try:
        mkda = nimare.meta.MKDADensity(kernel_transformer=kt, null_method="analytic")
        mkda.fit(dset)
        corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
        cres = corr.transform(mkda.results)
        plot_stat_map(
            cres.get_map("logp_level-voxel_corr-FWE_method-montecarlo"),
            cut_coords=[0, 0, -8],
            draw_cross=False,
            cmap="RdBu_r",
            title="MKDA estimator with %s" % kt_name,
        )

    except AttributeError:
        print(
            "\nError: the %s does not currently work with the MKDA meta-analysis method\n"
            % kt_name
        )
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  6.92it/s]
 20%|##        | 2/10 [00:00<00:01,  6.93it/s]
 30%|###       | 3/10 [00:00<00:01,  6.95it/s]
 40%|####      | 4/10 [00:00<00:00,  6.96it/s]
 50%|#####     | 5/10 [00:00<00:00,  6.97it/s]
 60%|######    | 6/10 [00:00<00:00,  6.98it/s]
 70%|#######   | 7/10 [00:01<00:00,  6.98it/s]
 80%|########  | 8/10 [00:01<00:00,  6.96it/s]
 90%|######### | 9/10 [00:01<00:00,  6.94it/s]
100%|##########| 10/10 [00:01<00:00,  6.94it/s]
100%|##########| 10/10 [00:01<00:00,  6.95it/s]

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  6.47it/s]
 20%|##        | 2/10 [00:00<00:01,  6.49it/s]
 30%|###       | 3/10 [00:00<00:01,  6.47it/s]
 40%|####      | 4/10 [00:00<00:00,  6.48it/s]
 50%|#####     | 5/10 [00:00<00:00,  6.47it/s]
 60%|######    | 6/10 [00:00<00:00,  6.48it/s]
 70%|#######   | 7/10 [00:01<00:00,  6.49it/s]
 80%|########  | 8/10 [00:01<00:00,  6.50it/s]
 90%|######### | 9/10 [00:01<00:00,  6.49it/s]
100%|##########| 10/10 [00:01<00:00,  6.50it/s]
100%|##########| 10/10 [00:01<00:00,  6.49it/s]

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  5.57it/s]
 20%|##        | 2/10 [00:00<00:01,  5.50it/s]
 30%|###       | 3/10 [00:00<00:01,  5.53it/s]
 40%|####      | 4/10 [00:00<00:01,  5.50it/s]
 50%|#####     | 5/10 [00:00<00:00,  5.52it/s]
 60%|######    | 6/10 [00:01<00:00,  5.48it/s]
 70%|#######   | 7/10 [00:01<00:00,  5.51it/s]
 80%|########  | 8/10 [00:01<00:00,  5.48it/s]
 90%|######### | 9/10 [00:01<00:00,  5.50it/s]
100%|##########| 10/10 [00:01<00:00,  5.48it/s]
100%|##########| 10/10 [00:01<00:00,  5.50it/s]

MKDA Chi2

for kt_name, kt in kernel_transformers.items():
    try:
        mkda = nimare.meta.MKDAChi2(kernel_transformer=kt)
        dset1 = dset.slice(dset.ids)
        dset2 = dset.slice(dset.ids)
        mkda.fit(dset1, dset2)
        corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
        cres = corr.transform(mkda.results)
        plot_stat_map(
            cres.get_map("z_desc-consistency_level-voxel_corr-FWE_method-montecarlo"),
            threshold=1.65,
            cut_coords=[0, 0, -8],
            draw_cross=False,
            cmap="RdBu_r",
            title="MKDA Chi2 estimator with %s" % kt_name,
        )

    except AttributeError:
        print(
            "\nError: the %s does not currently work with the MKDA Chi2 meta-analysis method\n"
            % kt_name
        )
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:02,  4.05it/s]
 20%|##        | 2/10 [00:00<00:01,  4.12it/s]
 30%|###       | 3/10 [00:00<00:01,  4.15it/s]
 40%|####      | 4/10 [00:00<00:01,  4.16it/s]
 50%|#####     | 5/10 [00:01<00:01,  4.16it/s]
 60%|######    | 6/10 [00:01<00:00,  4.15it/s]
 70%|#######   | 7/10 [00:01<00:00,  4.15it/s]
 80%|########  | 8/10 [00:01<00:00,  4.15it/s]
 90%|######### | 9/10 [00:02<00:00,  4.15it/s]
100%|##########| 10/10 [00:02<00:00,  4.15it/s]
100%|##########| 10/10 [00:02<00:00,  4.15it/s]
/home/docs/checkouts/readthedocs.org/user_builds/nimare/envs/0.0.6/lib/python3.7/site-packages/nilearn/plotting/displays.py:786: UserWarning: empty mask
  get_mask_bounds(new_img_like(img, not_mask, affine))

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:02,  3.56it/s]
 20%|##        | 2/10 [00:00<00:02,  3.61it/s]
 30%|###       | 3/10 [00:00<00:01,  3.64it/s]
 40%|####      | 4/10 [00:01<00:01,  3.65it/s]
 50%|#####     | 5/10 [00:01<00:01,  3.66it/s]
 60%|######    | 6/10 [00:01<00:01,  3.67it/s]
 70%|#######   | 7/10 [00:01<00:00,  3.68it/s]
 80%|########  | 8/10 [00:02<00:00,  3.67it/s]
 90%|######### | 9/10 [00:02<00:00,  3.66it/s]
100%|##########| 10/10 [00:02<00:00,  3.66it/s]
100%|##########| 10/10 [00:02<00:00,  3.66it/s]
/home/docs/checkouts/readthedocs.org/user_builds/nimare/envs/0.0.6/lib/python3.7/site-packages/nilearn/plotting/displays.py:786: UserWarning: empty mask
  get_mask_bounds(new_img_like(img, not_mask, affine))

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:03,  2.76it/s]
 20%|##        | 2/10 [00:00<00:02,  2.77it/s]
 30%|###       | 3/10 [00:01<00:02,  2.77it/s]
 40%|####      | 4/10 [00:01<00:02,  2.78it/s]
 50%|#####     | 5/10 [00:01<00:01,  2.79it/s]
 60%|######    | 6/10 [00:02<00:01,  2.79it/s]
 70%|#######   | 7/10 [00:02<00:01,  2.78it/s]
 80%|########  | 8/10 [00:02<00:00,  2.78it/s]
 90%|######### | 9/10 [00:03<00:00,  2.79it/s]
100%|##########| 10/10 [00:03<00:00,  2.79it/s]
100%|##########| 10/10 [00:03<00:00,  2.78it/s]
/home/docs/checkouts/readthedocs.org/user_builds/nimare/envs/0.0.6/lib/python3.7/site-packages/nilearn/plotting/displays.py:786: UserWarning: empty mask
  get_mask_bounds(new_img_like(img, not_mask, affine))

KDA

for kt_name, kt in kernel_transformers.items():
    try:
        kda = nimare.meta.KDA(kernel_transformer=kt, null_method="analytic")
        kda.fit(dset)
        corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
        cres = corr.transform(kda.results)
        plot_stat_map(
            cres.get_map("logp_level-voxel_corr-FWE_method-montecarlo"),
            cut_coords=[0, 0, -8],
            draw_cross=False,
            cmap="RdBu_r",
            title="KDA estimator with %s" % kt_name,
        )

    except AttributeError:
        print(
            "\nError: the %s does not currently work with the KDA meta-analysis method\n" % kt_name
        )
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  7.14it/s]
 20%|##        | 2/10 [00:00<00:01,  7.09it/s]
 30%|###       | 3/10 [00:00<00:00,  7.11it/s]
 40%|####      | 4/10 [00:00<00:00,  7.10it/s]
 50%|#####     | 5/10 [00:00<00:00,  7.10it/s]
 60%|######    | 6/10 [00:00<00:00,  7.09it/s]
 70%|#######   | 7/10 [00:00<00:00,  7.08it/s]
 80%|########  | 8/10 [00:01<00:00,  7.10it/s]
 90%|######### | 9/10 [00:01<00:00,  7.09it/s]
100%|##########| 10/10 [00:01<00:00,  7.12it/s]
100%|##########| 10/10 [00:01<00:00,  7.10it/s]

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  6.93it/s]
 20%|##        | 2/10 [00:00<00:01,  6.96it/s]
 30%|###       | 3/10 [00:00<00:01,  6.98it/s]
 40%|####      | 4/10 [00:00<00:00,  6.97it/s]
 50%|#####     | 5/10 [00:00<00:00,  6.97it/s]
 60%|######    | 6/10 [00:00<00:00,  6.97it/s]
 70%|#######   | 7/10 [00:01<00:00,  6.97it/s]
 80%|########  | 8/10 [00:01<00:00,  7.01it/s]
 90%|######### | 9/10 [00:01<00:00,  7.01it/s]
100%|##########| 10/10 [00:01<00:00,  7.00it/s]
100%|##########| 10/10 [00:01<00:00,  6.98it/s]

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  5.78it/s]
 20%|##        | 2/10 [00:00<00:01,  5.53it/s]
 30%|###       | 3/10 [00:00<00:01,  5.54it/s]
 40%|####      | 4/10 [00:00<00:01,  5.49it/s]
 50%|#####     | 5/10 [00:00<00:00,  5.54it/s]
 60%|######    | 6/10 [00:01<00:00,  5.56it/s]
 70%|#######   | 7/10 [00:01<00:00,  5.57it/s]
 80%|########  | 8/10 [00:01<00:00,  5.56it/s]
 90%|######### | 9/10 [00:01<00:00,  5.57it/s]
100%|##########| 10/10 [00:01<00:00,  5.56it/s]
100%|##########| 10/10 [00:01<00:00,  5.56it/s]

ALE

for kt_name, kt in kernel_transformers.items():
    try:
        ale = nimare.meta.ALE(kernel_transformer=kt, null_method="analytic")
        ale.fit(dset)
        corr = nimare.correct.FWECorrector(method="montecarlo", n_iters=10, n_cores=1)
        cres = corr.transform(ale.results)
        plot_stat_map(
            cres.get_map("logp_level-cluster_corr-FWE_method-montecarlo"),
            cut_coords=[0, 0, -8],
            draw_cross=False,
            cmap="RdBu_r",
            title="ALE estimator with %s" % kt_name,
        )

    except AttributeError:
        print(
            "\nError: the %s does not currently work with the ALE meta-analysis method\n" % kt_name
        )
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels
  • plot cbma combine estimators and kernels

Out:

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  6.51it/s]
 20%|##        | 2/10 [00:00<00:01,  6.53it/s]
 30%|###       | 3/10 [00:00<00:01,  6.54it/s]
 40%|####      | 4/10 [00:00<00:00,  6.53it/s]
 50%|#####     | 5/10 [00:00<00:00,  6.51it/s]
 60%|######    | 6/10 [00:00<00:00,  6.52it/s]
 70%|#######   | 7/10 [00:01<00:00,  6.51it/s]
 80%|########  | 8/10 [00:01<00:00,  6.50it/s]
 90%|######### | 9/10 [00:01<00:00,  6.51it/s]
100%|##########| 10/10 [00:01<00:00,  6.52it/s]
100%|##########| 10/10 [00:01<00:00,  6.52it/s]

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  6.11it/s]
 20%|##        | 2/10 [00:00<00:01,  6.12it/s]
 30%|###       | 3/10 [00:00<00:01,  6.08it/s]
 40%|####      | 4/10 [00:00<00:00,  6.07it/s]
 50%|#####     | 5/10 [00:00<00:00,  6.06it/s]
 60%|######    | 6/10 [00:00<00:00,  5.97it/s]
 70%|#######   | 7/10 [00:01<00:00,  6.01it/s]
 80%|########  | 8/10 [00:01<00:00,  6.03it/s]
 90%|######### | 9/10 [00:01<00:00,  6.05it/s]
100%|##########| 10/10 [00:01<00:00,  6.05it/s]
100%|##########| 10/10 [00:01<00:00,  6.05it/s]

  0%|          | 0/10 [00:00<?, ?it/s]
 10%|#         | 1/10 [00:00<00:01,  5.38it/s]
 20%|##        | 2/10 [00:00<00:01,  5.45it/s]
 30%|###       | 3/10 [00:00<00:01,  5.46it/s]
 40%|####      | 4/10 [00:00<00:01,  5.42it/s]
 50%|#####     | 5/10 [00:00<00:00,  5.43it/s]
 60%|######    | 6/10 [00:01<00:00,  5.44it/s]
 70%|#######   | 7/10 [00:01<00:00,  5.38it/s]
 80%|########  | 8/10 [00:01<00:00,  5.40it/s]
 90%|######### | 9/10 [00:01<00:00,  5.42it/s]
100%|##########| 10/10 [00:01<00:00,  5.39it/s]
100%|##########| 10/10 [00:01<00:00,  5.41it/s]

Total running time of the script: ( 1 minutes 23.885 seconds)

Gallery generated by Sphinx-Gallery