navlie.utils.plot.plot_error¶
- navlie.utils.plot.plot_error(results: GaussianResultList, axs: List[Axes] | None = None, label: str | None = None, sharey: bool = False, color=None, bounds=True) → Tuple[Figure, List[Axes]]¶
A generic three-sigma bound plotter.
- Parameters:
results (GaussianResultList) – Contains the data to plot
axs (List[plt.Axes], optional) – Axes to draw on, by default None. If None, new axes will be created.
label (str, optional) – Text label to add, by default None
sharey (bool, optional) – Whether to have a common y axis or not, by default False
color (color, optional) – specify the color of the error/bounds.
- Returns:
plt.Figure – Handle to figure.
List[plt.Axes] – Handle to axes that were drawn on.