.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
str
representation of the series.Warning
To ensure that the result is human-readable, the string representation will be generated without its
.data
property.Tip
If you would like a complete and unambiguous
str
representation, then you can:use the
__repr__()
method,call
repr(my_series)
, orserialize the series to JSON using
my_series.to_json()
.