graphinglib.FitFromExponential.add_error_curves#

FitFromExponential.add_error_curves(y_error: TypeAliasForwardRef('ArrayLike') | None = None, error_curves_color: str | Inherit = Inherit, error_curves_line_style: str | Inherit = Inherit, error_curves_line_width: float | Inherit = Inherit, error_curves_fill_between: bool | Inherit = Inherit) None#

Adds error curves to the Curve.

Parameters:
y_errorArrayLike, optional

Array of y errors.

error_curves_colorstr

Color of the error curves. "same as curve" uses the curve color. Default depends on the figure_style configuration.

error_curves_line_stylestr

Line style of the error curves. Values include "-", "--", "-.", ":", "solid", "dashed", "dashdot", and "dotted". Default depends on the figure_style configuration.

error_curves_line_widthfloat

Line width of the error curves. Typical range is 0.5 to 3 points. Default depends on the figure_style configuration.

error_curves_fill_betweenbool

Whether or not to fill the area between the two error curves. Default depends on the figure_style configuration.

Notes

Color parameters accept Matplotlib color formats: named colors ("blue"), short color strings ("b"), hex strings ("#0000ff"), grayscale strings ("0.5"), and RGB/RGBA tuples with values between 0 and 1 ((0, 0, 1) or (0, 0, 1, 0.5)).