graphinglib.FitFromGaussian.create_point_at_x#

FitFromGaussian.create_point_at_x(x: float, 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') Point#

Gets the point on the curve at a given x value.

Parameters:
xfloat

x value of the point.

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:
Point object on the curve at the given x value.