You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim_config/typings/matplotlib/stackplot.pyi

15 lines
520 B

"""
This type stub file was generated by pyright.
"""
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 = ..., baseline: Literal["zero", "sym", "wiggle", "weighted_wiggle"] = ..., **kwargs) -> list[PolyCollection]:
...