.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/01_plotting/plot_demo_more_plotting.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_01_plotting_plot_demo_more_plotting.py: More plotting tools from nilearn ================================ In this example, we show how to use some plotting options available with plotting functions of nilearn. These techniques are essential for visualizing brain image analysis results. Plotting functions of Nilearn, such as :func:`~nilearn.plotting.plot_stat_map`, have a few useful parameters which control what type of display object will be returned, as well as how many cuts will be shown for example. As we will see in the first part of this example, depending on the values of the parameters ``display_mode`` and ``cut_coords``, plotting functions return different display objects, all subclasses of :class:`nilearn.plotting.displays.OrthoSlicer`. These objects implement various methods to interact with the figures. In the second part of this example, we show how to use these methods to further customize the figures obtained with plotting functions. More precisely, we will show how to use :meth:`~nilearn.plotting.displays.OrthoSlicer.add_edges`, :meth:`~nilearn.plotting.displays.OrthoSlicer.add_contours`, and :meth:`~nilearn.plotting.displays.OrthoSlicer.add_markers`, all essential in visualizing regions of interest images, or mask images overlaying on subject specific anatomical / :term:`EPI` image. The parameter ``display_mode`` is used to draw brain slices along given specific directions, where directions can be one of 'ortho', 'tiled', 'mosaic', 'x', 'y', 'z', 'yx', 'xz', 'yz'. Whereas parameter ``cut_coords`` is used to specify a limited number of slices to visualize along given specific slice direction. The parameter ``cut_coords`` can also be used to draw the specific cuts in the slices by giving its particular coordinates in :term:`MNI` space accordingly with particular slice direction. This helps us point to the activation specific location of the brain slices. See :ref:`plotting` for more details. .. GENERATED FROM PYTHON SOURCE LINES 43-45 First, we retrieve data from nilearn provided (general-purpose) datasets ------------------------------------------------------------------------- .. GENERATED FROM PYTHON SOURCE LINES 45-59 .. code-block:: default from nilearn import datasets # haxby dataset to have anatomical image, EPI images and masks haxby_dataset = datasets.fetch_haxby() haxby_anat_filename = haxby_dataset.anat[0] haxby_mask_filename = haxby_dataset.mask_vt[0] haxby_func_filename = haxby_dataset.func[0] # localizer dataset to have contrast maps motor_images = datasets.fetch_neurovault_motor_task() stat_img = motor_images.images[0] .. GENERATED FROM PYTHON SOURCE LINES 60-62 Now, we show from here how to visualize the retrieved datasets using plotting tools from nilearn. .. GENERATED FROM PYTHON SOURCE LINES 62-65 .. code-block:: default from nilearn import plotting .. GENERATED FROM PYTHON SOURCE LINES 66-77 Visualizing in - 'sagittal', 'coronal' and 'axial' with given coordinates ------------------------------------------------------------------------- The first argument ``stat_img`` is a path to the filename of a contrast map. The optional argument ``display_mode`` is given as a string 'ortho' to visualize the map in three specific directions xyz. Because of this, the plotting function returns a :class:`~nilearn.plotting.displays.OrthoSlicer` object. The optional ``cut_coords`` argument is specified here as a list of integers representing coordinates of each slice in the order [x, y, z]. By default the ``colorbar`` argument is set to ``True`` in :func:`~nilearn.plotting.plot_stat_map`. .. GENERATED FROM PYTHON SOURCE LINES 77-82 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='ortho', cut_coords=[36, -27, 60], title="display_mode='ortho', cut_coords=[36, -27, 60]") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_001.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 83-93 Visualizing in - single view 'axial' with number of cuts=5 ----------------------------------------------------------- For axial visualization, we set ``display_mode='z'``. As a consequence :func:`~nilearn.plotting.plot_stat_map` returns a :class:`~nilearn.plotting.displays.ZSlicer` object. The parameter ``cut_coords`` is provided here as an integer (5) rather than a list, which implies that the number of cuts in the slices should be 5 maximum. Note that the coordinates used to cut the slices are selected automatically. .. GENERATED FROM PYTHON SOURCE LINES 93-97 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='z', cut_coords=5, title="display_mode='z', cut_coords=5") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_002.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_002.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 98-105 Visualizing in - single view 'sagittal' with only two slices ------------------------------------------------------------- For sagittal visualization, we set ``display_mode='x'`` which returns a :class:`~nilearn.plotting.displays.XSlicer` object. Additionally, we provide the coordinates of the slices as a list of integers. .. GENERATED FROM PYTHON SOURCE LINES 105-110 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='x', cut_coords=[-36, 36], title="display_mode='x', cut_coords=[-36, 36]") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_003.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_003.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 111-118 Visualizing in - 'coronal' view with single cut ------------------------------------------------ For coronal view, we set ``display_mode='y'`` which returns a :class:`~nilearn.plotting.displays.YSlicer` object. ``cut_coords`` is provided as an integer (1), and the coordinates are, again, selected automatically. .. GENERATED FROM PYTHON SOURCE LINES 118-122 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='y', cut_coords=1, title="display_mode='y', cut_coords=1") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_004.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_004.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 123-128 Visualizing without a colorbar on the right side ------------------------------------------------- The argument ``colorbar`` should be set to ``False`` to show plots without a colorbar on the right side. .. GENERATED FROM PYTHON SOURCE LINES 128-133 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='z', cut_coords=1, colorbar=False, title="display_mode='z', cut_coords=1, colorbar=False") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_005.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_005.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 134-144 Visualize in - two views 'sagittal' and 'axial' with given coordinates ------------------------------------------------------------------------- In order to visualize both sagittal and axial views, we set ``display_mode='xz'``, where 'x' stands for sagittal and 'z' for axial view. Function :func:`~nilearn.plotting.plot_stat_map` thus returns a :class:`~nilearn.plotting.displays.XZSlicer` object. Finally, the argument ``cut_coords`` should match with the input number of views (two here). It is provided as a list of integers here to select the slices to be displayed. .. GENERATED FROM PYTHON SOURCE LINES 144-149 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='xz', cut_coords=[36, 60], title="display_mode='xz', cut_coords=[36, 60]") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_006.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_006.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 150-157 Changing the views to 'coronal', 'sagittal' views with coordinates ------------------------------------------------------------------- Similarly, we can set ``display_mode='yx'`` for combining a coronal with a sagittal view, which will return a :class:`~nilearn.plotting.displays.YXSlicer` object. The coordinates will be assigned in the order of direction as [x, y, z]. .. GENERATED FROM PYTHON SOURCE LINES 157-162 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='yx', cut_coords=[-27, 36], title="display_mode='yx', cut_coords=[-27, 36]") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_007.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_007.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 163-169 Now, views are changed to 'coronal' and 'axial' views with coordinates ----------------------------------------------------------------------- We can set ``display_mode='yz'`` to combine a coronal with an axial view, which will return a :class:`~nilearn.plotting.displays.YZSlicer` object. .. GENERATED FROM PYTHON SOURCE LINES 169-174 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='yz', cut_coords=[-27, 60], title="display_mode='yz', cut_coords=[-27, 60]") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_008.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_008.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 175-182 Visualizing three views in 2x2 fashion ------------------------------------------------------------------------- If we want to combine three views in a 2x2 way, we can set ``display_mode='tiled'``, which will combine sagittal, coronal, and axial views. In this case, :func:`~nilearn.plotting.plot_stat_map` will return a :class:`~nilearn.plotting.displays.TiledSlicer` object. .. GENERATED FROM PYTHON SOURCE LINES 182-187 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='tiled', cut_coords=[36, -27, 60], title="display_mode='tiled'") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_009.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_009.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 188-196 Visualizing three views along multiple rows and columns ------------------------------------------------------------------------- If we set ``display_mode='mosaic'``, we can easily combine sagittal, coronal, and axial views with different rows and columns. In this situation, :func:`~nilearn.plotting.plot_stat_map` returns a :class:`~nilearn.plotting.displays.MosaicSlicer` object. In addition, we show here the default option ``cut_coords=None``. .. GENERATED FROM PYTHON SOURCE LINES 196-200 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='mosaic', title="display_mode='mosaic' default cut_coords") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_010.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_010.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 201-207 Now, changing the number of slices along columns ------------------------------------------------------------------------- Here, we still set ``display_mode='mosaic'``, but we set the number of slices to be the same across views. In this case, we can specify it as an integer, i.e. ``cut_coords=3``. .. GENERATED FROM PYTHON SOURCE LINES 207-212 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='mosaic', cut_coords=3, title="display_mode='mosaic' with cut_coords=3") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_011.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_011.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 213-219 Now, another way of limiting the number of slices along rows and columns ------------------------------------------------------------------------- It can be the case that we want to display a different number of cuts in each view. In this situation, we still set ``display_mode='mosaic'``, but we specify the number of slices as a tuple of length 3. .. GENERATED FROM PYTHON SOURCE LINES 219-224 .. code-block:: default plotting.plot_stat_map(stat_img, display_mode='mosaic', cut_coords=(5, 4, 10), title="display_mode='mosaic' with cut_coords as tuple") .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_012.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_012.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none .. GENERATED FROM PYTHON SOURCE LINES 225-232 Demonstrating various display features --------------------------------------- In this second part, we demonstrate how to interact with the obtained figures. More precisely, we will show how to use specific methods of the display objects which can be helpful in projecting brain imaging results for further interpretation. .. GENERATED FROM PYTHON SOURCE LINES 232-240 .. code-block:: default # Import image processing tool for basic processing of functional brain image from nilearn import image # Compute voxel-wise mean functional image across time dimension. Now we have # functional image in 3D assigned in mean_haxby_img mean_haxby_img = image.mean_img(haxby_func_filename) .. GENERATED FROM PYTHON SOURCE LINES 241-257 Showing how to use `add_edges` ------------------------------ Now let us see how to use the method :meth:`~nilearn.plotting.displays.OrthoSlicer.add_edges` for checking coregistration by overlaying anatomical image as edges (red) on top of mean functional image (background), both being of same subject. First, we call the :func:`nilearn.plotting.plot_anat` plotting function, with a background image as first argument, in this case the mean :term:`fMRI` image. We then use the :meth:`~nilearn.plotting.displays.OrthoSlicer.add_edges` method. The first argument is the anatomical image and, by default, edges will be displayed in red ('r'). To choose a different color, use the ``color`` argument. .. GENERATED FROM PYTHON SOURCE LINES 257-261 .. code-block:: default display = plotting.plot_anat(mean_haxby_img, title="add_edges") display.add_edges(haxby_anat_filename, color='r') .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_013.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_013.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 262-282 How to use `add_contours` ------------------------- Here, we show how to plot the outline of a mask (in red) on top of the mean :term:`EPI` image with the method :meth:`~nilearn.plotting.displays.OrthoSlicer.add_contours`. This method is useful for region specific interpretation of brain images As before, we call the :func:`~nilearn.plotting.plot_anat` function with a background image as first argument, in this case the mean :term:`fMRI` image, and argument ``cut_coords`` as a list for manual cuts with coordinates pointing at masked brain regions. We then use the :meth:`~nilearn.plotting.displays.OrthoSlicer.add_contours` method of the display object returned by :func:`~nilearn.plotting.plot_anat`. We provide the path to a mask image from the Haxby dataset as the first argument, and we provide ``levels`` as a list of values to select particular levels in the contour to display. We also specify ``colors='r'`` to display edges in red (See function :func:`~matplotlib.pyplot.contour` to use more options). .. GENERATED FROM PYTHON SOURCE LINES 282-288 .. code-block:: default display = plotting.plot_anat(mean_haxby_img, title="add_contours", cut_coords=[-34, -39, -9]) display.add_contours(haxby_mask_filename, levels=[0.5], colors='r') .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_014.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_014.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 289-299 Here, we plot the outline of the mask (in blue) with color fillings using the same method :meth:`~nilearn.plotting.displays.OrthoSlicer.add_contours`. By default, no color fillings will be shown using :meth:`~nilearn.plotting.displays.OrthoSlicer.add_contours`. To see contours with color fillings, use argument ``filled=True``. Here, contour colors are changed to blue 'b', and we specify ``alpha=0.7`` to set the transparency of the fillings. See function :func:`~matplotlib.pyplot.contourf` to use more options (given that ``filled`` should be ``True``). .. GENERATED FROM PYTHON SOURCE LINES 299-307 .. code-block:: default display = plotting.plot_anat(mean_haxby_img, title="add_contours with filled=True", cut_coords=[-34, -39, -9]) display.add_contours(haxby_mask_filename, filled=True, alpha=0.7, levels=[0.5], colors='b') .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_015.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_015.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none /home/nicolas/GitRepos/nilearn-fork/nilearn/plotting/displays/_axes.py:71: UserWarning: No contour levels were found within the data range. .. GENERATED FROM PYTHON SOURCE LINES 308-319 Plotting seeds using `add_markers` ---------------------------------- Plotting seed regions of interest as spheres using method :meth:`~nilearn.plotting.displays.OrthoSlicer.add_markers` with :term:`MNI` coordinates of interest. The coordinates of the seed regions should be specified as the first argument, and second argument ``marker_color`` is used to denote the color of the sphere (in this case yellow 'y'). The third argument ``marker_size`` is used to control the size of the sphere. .. GENERATED FROM PYTHON SOURCE LINES 319-325 .. code-block:: default display = plotting.plot_anat(mean_haxby_img, title="add_markers", cut_coords=[-34, -39, -9]) coords = [(-34, -39, -9)] display.add_markers(coords, marker_color='y', marker_size=100) .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_016.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_016.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 326-333 Annotating plots ---------------- It is possible to alter the default annotations of plots, using the method :meth:`~nilearn.plotting.displays.OrthoSlicer.annotate` of the display objects. For example, we can add a scale bar at the bottom right of each view: .. GENERATED FROM PYTHON SOURCE LINES 333-340 .. code-block:: default display = plotting.plot_anat(mean_haxby_img, title="adding a scale bar", cut_coords=[-34, -39, -9]) display.annotate(scalebar=True) .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_017.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_017.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 341-344 Further configuration can be achieved by setting ``scale_*`` keyword args. For instance, we can change the ``units`` to ``mm``, or use a different scale bar size. .. GENERATED FROM PYTHON SOURCE LINES 344-350 .. code-block:: default display = plotting.plot_anat(mean_haxby_img, title="adding a scale bar", cut_coords=[-34, -39, -9]) display.annotate(scalebar=True, scale_size=25, scale_units='mm') .. image-sg:: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_018.png :alt: plot demo more plotting :srcset: /auto_examples/01_plotting/images/sphx_glr_plot_demo_more_plotting_018.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 351-360 Saving plots to file -------------------- Finally, we can save a plot to file in two different ways: First, we can save the contrast maps plotted with the function :func:`nilearn.plotting.plot_stat_map` using the built-in parameter ``output_file``. We provide the filename and the file extension as a string (supported extensions are .png, .pdf, .svg). .. GENERATED FROM PYTHON SOURCE LINES 360-365 .. code-block:: default plotting.plot_stat_map(stat_img, title='Using plot_stat_map output_file', output_file='plot_stat_map.png') .. GENERATED FROM PYTHON SOURCE LINES 366-369 A second way to save plots is by using the method :meth:`~nilearn.plotting.displays.OrthoSlicer.savefig` of the display object returned. .. GENERATED FROM PYTHON SOURCE LINES 369-379 .. code-block:: default display = plotting.plot_stat_map(stat_img, title='Using display savefig') display.savefig('plot_stat_map_from_display.png') # In non-interactive settings make sure you close your displays display.close() plotting.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 38.291 seconds) **Estimated memory usage:** 916 MB .. _sphx_glr_download_auto_examples_01_plotting_plot_demo_more_plotting.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: binder-badge .. image:: images/binder_badge_logo.svg :target: https://mybinder.org/v2/gh/nilearn/nilearn.github.io/main?filepath=examples/auto_examples/01_plotting/plot_demo_more_plotting.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_demo_more_plotting.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_demo_more_plotting.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_