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.
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_color='auto', node_size=3.0, colorbar=True, colorbar_height=0.5, colorbar_fontsize=25, title=None, title_fontsize=25)[source]¶
Insert a 3d plot of a connectome into an HTML page.
- Parameters:
- adjacency_matrix
numpy.ndarray
of shape=(n_nodes, n_nodes) The weights of the edges.
- node_coords
numpy.ndarray
of shape=(n_nodes, 3) The coordinates of the nodes in MNI space.
- node_colorcolor or sequence of colors, default=’auto’
Color(s) of the nodes.
- edge_threshold
str
, number or None, 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, default=cm.bwr Colormap to use.
- symmetric_cmap
bool
, default=True Make colormap symmetric (ranging from -vmax to vmax).
- linewidth
float
, default=6.0 Width of the lines that show connections.
- node_size
float
, default=3.0 Size of the markers showing the seeds in pixels.
- colorbar
bool
, default=True Add a colorbar.
- colorbar_height
float
, default=0.5 Height of the colorbar, relative to the figure height.
- colorbar_fontsize
int
, default=25 Fontsize of the colorbar tick labels.
- title
str
or None, default=None Title for the plot.
- title_fontsize
int
, default=25 Fontsize of the title.
- adjacency_matrix
- Returns:
- ConnectomeViewplot 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
interactive view of statistical maps or surface atlases on the cortical surface.
Examples using nilearn.plotting.view_connectome
¶
Loading and plotting of a cortical surface atlas
Computing a connectome with sparse inverse covariance
Extracting signals of a probabilistic atlas of functional regions
Extract signals on spheres and plot a connectome