ovrlpy.plot_region_of_interest ============================== .. py:function:: ovrlpy.plot_region_of_interest(ovrlp, x, y, *, window_size = 30, signal_threshold = 5.0, scalebar = SCALEBAR_PARAMS, figsize = (12, 8), **kwargs) Plot an overview of a zoomed-in region of interest. :param ovrlp: Ovrlp object containing the fitted model :type ovrlp: Ovrlp :param x: x coordinate of the region of interest :type x: float :param y: y coordinate of the region of interest :type y: float :param window_size: Size of the window to display. :type window_size: int, optional :param signal_threshold: Threshold for the signal plot. :type signal_threshold: float, 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 :param figsize: Size of the figure in inches. :type figsize: tuple[float, float] :param kwargs: Other keyword arguments are passed to :py:func:`matplotlib.pyplot.figure` :rtype: matplotlib.figure.Figure