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
- 2D array-like: Each row represents a category, each column represents an x-axis dimension associated with the categories. A list of 1D array-like can also be passed; each list item must have the same length
48
+
49
+
Example call:
50
+
51
+
.. code-block:: python
52
+
53
+
y = [y1, y2, y3]
54
+
x = [*range(3)]
55
+
56
+
stackplot(x, y)
57
+
58
+
- a `pandas.DataFrame`: The index is used for the categories, each column represents an x-axis dimension associated with the categories.
0 commit comments