-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
While building the docs, I noticed that the SuccessionDiagram
API could be simplified in a few ways:
- We have various node attributes that could be grouped into a separate object, e.g.,
sd.node_is_expanded
should besd.node.is_expanded
. - Several of the
from_xxx(s)
methods could be grouped into one function, e.g.,from_string(s, format=xxx)
. - The various expansion methods could be aggregated into one with an
method
argument.