| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/lib/python3.9/dist-packages/matplotlib/ |
Upload File : |
from matplotlib.axes import Axes
from collections.abc import Callable, Iterable
from typing import Any
import numpy as np
__license__: str
__credits__: list[str]
__author__: str
__version__: str
RIGHT: int
UP: int
DOWN: int
# TODO typing units
class Sankey:
diagrams: list[Any]
ax: Axes
unit: Any
format: str | Callable[[float], str]
scale: float
gap: float
radius: float
shoulder: float
offset: float
margin: float
pitch: float
tolerance: float
extent: np.ndarray
def __init__(
self,
ax: Axes | None = ...,
scale: float = ...,
unit: Any = ...,
format: str | Callable[[float], str] = ...,
gap: float = ...,
radius: float = ...,
shoulder: float = ...,
offset: float = ...,
head_angle: float = ...,
margin: float = ...,
tolerance: float = ...,
**kwargs
) -> None: ...
def add(
self,
patchlabel: str = ...,
flows: Iterable[float] | None = ...,
orientations: Iterable[int] | None = ...,
labels: str | Iterable[str | None] = ...,
trunklength: float = ...,
pathlengths: float | Iterable[float] = ...,
prior: int | None = ...,
connect: tuple[int, int] = ...,
rotation: float = ...,
**kwargs
# Replace return with Self when py3.9 is dropped
) -> Sankey: ...
def finish(self) -> list[Any]: ...