stub_all_clipped_values

stub_all_clipped_values(ax: Axes, *, marker_kws: Dict = frozendict.frozendict({}), offset: float = 0.1) None[source]

Draw edge markers for points lying outside the plot’s bounds.

The original point and associated error bar (if any) is moved into the margin with a note indicating the original location. If the point is out of xlim and out of ylim, the point will be retrieved with two edge markers (horizontal and vertical).

Parameters:
  • ax (matplotlib.axes.Axes) – The axes object to draw markers on.

  • marker_kws (dict, optional) – Keyword arguments forwarded to matplotlib plot for edge markers.

  • offset (float, default 0.1) – How far outside axis viewport to draw edge markers, proportional to axis viewport height or width.

Notes

Full error bar support for values below lower {x,y}lim remains be implemented. Current implementation assumes each error bar is associated with a scatter point.