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
stackplot(x, y1, y2, y3, y4) # where y1, y2, y3, y4 have length N
38
38
39
-
x = [*range(3)]
40
-
41
-
Example call:
42
-
43
-
.. code-block:: python
44
-
45
-
stackplot(x, y1, y2, y3)
46
-
47
-
- 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