A new shade of Black (#11362)

This commit is contained in:
Alex Waygood
2024-02-05 00:38:55 +00:00
committed by GitHub
parent 7a6a749449
commit c49c84f319
76 changed files with 190 additions and 106 deletions
+14 -10
View File
@@ -106,11 +106,13 @@ class ClusterGrid(Grid):
dendrogram_col: _DendrogramPlotter | None
def __init__(
self,
data: _ListLikeU
| DataFrame
| dict[Incomplete, Incomplete]
| Iterable[_ListLikeU | tuple[Hashable, _ListLikeU] | dict[Incomplete, Incomplete]]
| None,
data: (
_ListLikeU
| DataFrame
| dict[Incomplete, Incomplete]
| Iterable[_ListLikeU | tuple[Hashable, _ListLikeU] | dict[Incomplete, Incomplete]]
| None
),
pivot_kws: Mapping[str, Incomplete] | None = None,
z_score: int | None = None,
standard_scale: int | None = None,
@@ -166,11 +168,13 @@ class ClusterGrid(Grid):
) -> Self: ...
def clustermap(
data: _ListLikeU
| DataFrame
| dict[Incomplete, Incomplete]
| Iterable[_ListLikeU | tuple[Hashable, _ListLikeU] | dict[Incomplete, Incomplete]]
| None,
data: (
_ListLikeU
| DataFrame
| dict[Incomplete, Incomplete]
| Iterable[_ListLikeU | tuple[Hashable, _ListLikeU] | dict[Incomplete, Incomplete]]
| None
),
*,
pivot_kws: dict[str, Incomplete] | None = None,
method: str = "average",