.. 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_carpet.py: Visualizing global patterns with a carpet plot ============================================== A common quality control step for functional MRI data is to visualize the data over time in a carpet plot (also known as a Power plot or a grayplot). The :func:`nilearn.plotting.plot_carpet()` function generates a carpet plot from a 4D functional image. Fetching data from ADHD dataset ------------------------------- .. code-block:: default from nilearn import datasets adhd_dataset = datasets.fetch_adhd(n_subjects=1) # Print basic information on the dataset print('First subject functional nifti image (4D) is at: %s' % adhd_dataset.func[0]) # 4D data .. rst-class:: sphx-glr-script-out Out: .. code-block:: none /home/varoquau/dev/nilearn/nilearn/datasets/func.py:438: VisibleDeprecationWarning: Reading unicode strings without specifying the encoding argument is deprecated. Set the encoding, use None for the system default. phenotypic = np.genfromtxt(phenotypic, names=True, delimiter=',', First subject functional nifti image (4D) is at: /home/varoquau/nilearn_data/adhd/data/0010042/0010042_rest_tshift_RPI_voreg_mni.nii.gz Deriving a mask --------------- .. code-block:: default from nilearn import masking # Build an EPI-based mask because we have no anatomical data mask_img = masking.compute_epi_mask(adhd_dataset.func[0]) Visualizing global patterns over time ------------------------------------- .. code-block:: default import matplotlib.pyplot as plt from nilearn.plotting import plot_carpet display = plot_carpet(adhd_dataset.func[0], mask_img) display.show() .. image:: /auto_examples/01_plotting/images/sphx_glr_plot_carpet_001.png :alt: plot carpet :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out Out: .. code-block:: none /home/varoquau/dev/nilearn/examples/01_plotting/plot_carpet.py:40: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. display.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 4.033 seconds) .. _sphx_glr_download_auto_examples_01_plotting_plot_carpet.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: binder-badge .. image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/gh/nilearn/nilearn.github.io/master?filepath=examples/auto_examples/01_plotting/plot_carpet.ipynb :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_carpet.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_carpet.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_