up follow livre

This commit is contained in:
Tykayn 2025-08-30 18:14:14 +02:00 committed by tykayn
parent b4b4398bb0
commit 3a7a3849ae
12242 changed files with 2564461 additions and 6914 deletions

View file

@ -0,0 +1,20 @@
from matplotlib.axes import Axes
from matplotlib.collections import PolyCollection
from collections.abc import Iterable
from typing import Literal
from numpy.typing import ArrayLike
from matplotlib.typing import ColorType
def stackplot(
axes: Axes,
x: ArrayLike,
*args: ArrayLike,
labels: Iterable[str] = ...,
colors: Iterable[ColorType] | None = ...,
hatch: Iterable[str] | str | None = ...,
baseline: Literal["zero", "sym", "wiggle", "weighted_wiggle"] = ...,
**kwargs
) -> list[PolyCollection]: ...
__all__ = ['stackplot']