You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""A hierarchical data structure that organizes elements into parent-child relationships. The tree starts from a unique root node, and every node (excluding the root) has exactly one parent.
204
+
"""A hierarchical data structure that organizes elements into parent-child relationships.
205
+
The tree starts from a unique root node, and every node (excluding the root) has exactly one parent.
205
206
206
207
Parameters
207
208
----------
208
209
name : str, optional
209
210
The name of the tree.
211
+
**kwargs : dict, optional
212
+
Additional keyword arguments, which are stored in the attributes dict.
0 commit comments