arcfish.pl.pairwise_heatmap#
- arcfish.pl.pairwise_heatmap(X1: ndarray, X2: ndarray = None, ax: Axes = None, x: str = None, y: str = None, title: str = None, cmap: str = 'RdBu', **args)#
Single heatmap or two heatmaps in the upper and the lower triangle regions.
- Parameters:
X1 (np.ndarray) – First heatmap data, passed to
arcfish.pl.cast_to_distmat().X2 (np.ndarray, optional) – Second data, passed to
arcfish.pl.cast_to_distmat(), by default None.ax (plt.Axes, optional) – Axis to plot the heatmap, by default None.
x (str, optional) – Label for the first heatmap, by default None.
y (str, optional) – Label for the second heatmap, by default None.
title (str, optional) – Title of the plot, by default None.
cmap (str, optional) – Colormap, by default “seismic_r”.