graphinglib.FitFromPolynomial.create_points_at_y#

FitFromPolynomial.create_points_at_y(y: float, interpolation_kind: str = 'linear', label: str | None = None, color: str = 'default', edge_color: str = 'default', marker_size: float | Literal['default'] = 'default', marker_style: str = 'default', line_width: float | Literal['default'] = 'default') list[Point]#

Creates the Points on the curve at a given y value.

Parameters:
yfloat

y value of the point.

interpolation_kindstr

Kind of interpolation to be used. Default is “linear”.

labelstr, optional

Label to be displayed in the legend.

colorstr

Face color of the point. Default depends on the figure_style configuration.

edge_colorstr

Edge color of the point. Default depends on the figure_style configuration.

marker_sizefloat

Size of the point. Default depends on the figure_style configuration.

marker_stylestr

Style of the point. Default depends on the figure_style configuration.

line_widthfloat

Width of the edge of the point. Default depends on the figure_style configuration.

Returns:
list[Point]

List of Point objects on the curve at the given y value.