.arcdiagram
class: ArcDiagramSeries
- class ArcDiagramSeries(**kwargs)[source]
 Arc diagram series is a chart drawing style in which the vertices of the chart are positioned along a line on the Euclidean plane and the edges are drawn as a semicircle in one of the two half-planes delimited by the line, or as smooth curves formed by sequences of semicircles.
Class Inheritance

- __str__()
 Return a human-readable
strrepresentation of the series.Warning
To ensure that the result is human-readable, the string representation will be generated without its
.dataproperty.Tip
If you would like a complete and unambiguous
strrepresentation, then you can:use the
__repr__()method,call
repr(my_series), orserialize the series to JSON using
my_series.to_json().