ovrlpy.plot_signal_integrity ============================ .. py:function:: ovrlpy.plot_signal_integrity(integrity, signal, signal_threshold = 2.0, cmap='BIH', figure_height = 10, plot_hist = True, scalebar = SCALEBAR_PARAMS) Plots the determined signal integrity of the tissue sample in a signal integrity map. :param integrity: Integrity map obtained from ovrlpy analysis :type integrity: numpy.ndarray :param signal: Signal map from ovrlpy analysis :type signal: numpy.ndarray :param signal_threshold: Threshold below which the signal is faded out in the plot, to avoid displaying noisy areas with low predictive confidence. :type signal_threshold: float, optional :param cmap: Colormap for display. :type cmap: str | matplotlib.colors.Colormap, optional :param plot_hist: Whether to plot a histogram of integrity values alongside the map. :type plot_hist: bool, optional :param scalebar: If `None` no scalebar will be plotted. Otherwise a dictionary with additional kwargs for ``matplotlib_scalebar.scalebar.ScaleBar``. By default :py:attr:`ovrlpy.SCALEBAR_PARAMS` :type scalebar: dict[str, typing.Any] | None