diff --git a/galleries/examples/lines_bars_and_markers/categorical_variables.pyi b/galleries/examples/lines_bars_and_markers/categorical_variables.pyi new file mode 100644 index 000000000000..1c6d45874774 --- /dev/null +++ b/galleries/examples/lines_bars_and_markers/categorical_variables.pyi @@ -0,0 +1,14 @@ +from __future__ import annotations +from matplotlib.figure import Figure +from matplotlib.axes import Axes +from numpy.typing import NDArray + +data: dict[str, int] +names: list[str] +values: list[int] +fig: Figure +axs: NDArray[Axes] +cat: list[str] +dog: list[str] +activity: list[str] +ax: Axes