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.10.28. nilearn.plotting.view_connectome¶
nilearn.plotting.
view_connectome
(adjacency_matrix, node_coords, edge_threshold=None, edge_cmap=<matplotlib.colors.LinearSegmentedColormap object>, symmetric_cmap=True, linewidth=6.0, node_size=3.0, colorbar=True, colorbar_height=0.5, colorbar_fontsize=25, title=None, title_fontsize=25)¶Insert a 3d plot of a connectome into an HTML page.
Parameters: adjacency_matrix : ndarray, shape=(n_nodes, n_nodes)
the weights of the edges.
node_coords : ndarray, shape=(n_nodes, 3)
the coordinates of the nodes in MNI space.
edge_threshold : str, number or None, optional (default=None)
If None, no thresholding. If it is a number only connections of amplitude greater than threshold will be shown. If it is a string it must finish with a percent sign, e.g. “25.3%”, and only connections of amplitude above the given percentile will be shown.
edge_cmap : str or matplotlib colormap, optional
symmetric_cmap : bool, optional (default=True)
Make colormap symmetric (ranging from -vmax to vmax).
linewidth : float, optional (default=6.)
Width of the lines that show connections.
node_size : float, optional (default=3.)
Size of the markers showing the seeds in pixels.
colorbar : bool, optional (default=True)
add a colorbar
colorbar_height : float, optional (default=.5)
height of the colorbar, relative to the figure height
colorbar_fontsize : int, optional (default=25)
fontsize of the colorbar tick labels
title : str, optional (default=None)
title for the plot
title_fontsize : int, optional (default=25)
fontsize of the title
Returns: ConnectomeView : plot of the connectome.
It can be saved as an html page or rendered (transparently) by the Jupyter notebook. Useful methods are :
- ‘resize’ to resize the plot displayed in a Jupyter notebook
- ‘save_as_html’ to save the plot to a file
- ‘open_in_browser’ to save the plot and open it in a web browser.
See also
nilearn.plotting.plot_connectome
- projected views of a connectome in a glass brain.
nilearn.plotting.view_markers
- interactive plot of colored markers
nilearn.plotting.view_surf
,nilearn.plotting.view_img_on_surf