Bullseye#

class data_morph.shapes.circles.Bullseye(dataset: Dataset)[source]#

Bases: Rings

Class representing a bullseye shape comprising two concentric circles.

../_images/data_morph-shapes-circles-Bullseye-1.png

This shape is generated using the panda dataset.#

Parameters:

dataset (Dataset) – The starting dataset to morph into other shapes.

See also

Rings

The Bullseye is a special case where we only have 2 rings.

circles: list[Circle]#

The individual rings represented by Circle objects.

Type:

list[Circle]

distance(x: Number, y: Number) float#

Calculate the minimum absolute distance between any of this shape’s circles’ edges and a point (x, y).

Parameters:
Returns:

The minimum absolute distance between any of this shape’s circles’ edges and the point (x, y).

Return type:

float

See also

Circle.distance

Rings consists of multiple circles, so we use the minimum distance to one of the circles.

plot(ax: Axes = None) Axes#

Plot the shape.

Parameters:

ax (matplotlib.axes.Axes, optional) – An optional Axes object to plot on.

Returns:

The Axes object containing the plot.

Return type:

matplotlib.axes.Axes