Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e30a0b2

Browse files
authored
Create categorical_variables.pyi
1 parent a7c08c8 commit e30a0b2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from __future__ import annotations
2+
from matplotlib.figure import Figure
3+
from matplotlib.axes import Axes
4+
from numpy.typing import NDArray
5+
6+
data: dict[str, int]
7+
names: list[str]
8+
values: list[int]
9+
fig: Figure
10+
axs: NDArray[Axes]
11+
cat: list[str]
12+
dog: list[str]
13+
activity: list[str]
14+
ax: Axes

0 commit comments

Comments
 (0)