Note
This is the documentation for the current state of the development branch of Qiskit Experiments. The documentation or APIs here can change prior to being released.
BaseDrawer.scatter¶
- abstract BaseDrawer.scatter(x_data, y_data, x_err=None, y_err=None, name=None, label=None, legend=False, **options)[source]¶
Draw scatter points, with optional error-bars.
- Parameters:
x_data (
Sequence
[float
]) – X values.y_data (
Sequence
[float
]) – Y values.x_err (
Optional
[Sequence
[float
]]) – Optional error for X values.y_err (
Optional
[Sequence
[float
]]) – Optional error for Y values.name (
Union
[str
,int
,float
,None
]) – Name of this series.label (
Optional
[str
]) – Optional legend label to overridename
andseries_params
.legend (
bool
) – Whether the drawn area must have a legend entry. Defaults to False. The series label in the legend will belabel
if it is not None. If it is, thenseries_params
is searched for a"label"
entry for the series identified byname
. If this is alsoNone
, thenname
is used as the fallback. If noname
is provided, then no legend entry is generated.options – Valid options for the drawer backend API.