Skip to content

_matplotlib

Initialize matplotlib plotting functions.

plot

Plot function.

Source code in src/pathpyG/visualisations/_matplotlib/__init__.py
def plot(data: dict, kind: str = "network", **kwargs: Any) -> Any:
    """Plot function."""
    return PLOT_CLASSES[kind](data, **kwargs)