From e30a0b263d23948ef8d3dcdb609e589e22c27456 Mon Sep 17 00:00:00 2001 From: Santt997 <100727981+Santt997@users.noreply.github.com> Date: Wed, 21 May 2025 22:42:51 -0300 Subject: [PATCH] Create categorical_variables.pyi --- .../categorical_variables.pyi | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 galleries/examples/lines_bars_and_markers/categorical_variables.pyi 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