Note
This page is a reference documentation. It only explains the function signature, and not how to use it. Please refer to the user guide for the big picture.
8.11.23. nilearn.plotting.plot_event¶
- nilearn.plotting.plot_event(model_event, cmap=None, output_file=None, **fig_kwargs)[source]¶
Creates plot for event visualization.
- Parameters
- model_event
pandas.DataFrameorlistofpandas.DataFrame The
pandas.DataFramemust have three columns:event_typewith event name,onsetandduration.Note
The
pandas.DataFramecan also be obtained fromnilearn.glm.first_level.first_level_from_bids.- cmap
matplotlib.colors.Colormap, orstr, optional The colormap to use. Either a string which is a name of a matplotlib colormap, or a matplotlib colormap object.
- output_file
str, or None, optional The name of an image file to export the plot to. Valid extensions are .png, .pdf, .svg. If
output_fileis not None, the plot is saved to a file, and the display is closed.- **fig_kwargsextra keyword arguments, optional
Extra arguments passed to
matplotlib.pyplot.subplots.
- model_event
- Returns
- figure
matplotlib.figure.Figure Plot Figure object.
- figure