@@ -645,7 +645,7 @@ def apply(self, func, axis=0, subset=None, **kwargs):
645
645
subset : IndexSlice
646
646
a valid indexer to limit ``data`` to *before* applying the
647
647
function. Consider using a pandas.IndexSlice
648
- kwargs : dict
648
+ ** kwargs : dict
649
649
pass along to ``func``
650
650
651
651
Returns
@@ -697,7 +697,7 @@ def applymap(self, func, subset=None, **kwargs):
697
697
subset : IndexSlice
698
698
a valid indexer to limit ``data`` to *before* applying the
699
699
function. Consider using a pandas.IndexSlice
700
- kwargs : dict
700
+ ** kwargs : dict
701
701
pass along to ``func``
702
702
703
703
Returns
@@ -732,7 +732,7 @@ def where(self, cond, value, other=None, subset=None, **kwargs):
732
732
subset : IndexSlice
733
733
a valid indexer to limit ``data`` to *before* applying the
734
734
function. Consider using a pandas.IndexSlice
735
- kwargs : dict
735
+ ** kwargs : dict
736
736
pass along to ``cond``
737
737
738
738
Returns
@@ -965,8 +965,10 @@ def background_gradient(
965
965
----------
966
966
cmap : str or colormap
967
967
matplotlib colormap
968
- low, high : float
969
- compress the range by these values.
968
+ low : float
969
+ compress the range by the low.
970
+ high : float
971
+ compress the range by the high.
970
972
axis : {0 or 'index', 1 or 'columns', None}, default 0
971
973
apply to each column (``axis=0`` or ``'index'``), to each row
972
974
(``axis=1`` or ``'columns'``), or to the entire DataFrame at once
@@ -1078,7 +1080,7 @@ def set_properties(self, subset=None, **kwargs):
1078
1080
----------
1079
1081
subset : IndexSlice
1080
1082
a valid slice for ``data`` to limit the style application to
1081
- kwargs : dict
1083
+ ** kwargs : dict
1082
1084
property: value pairs to be set for each cell
1083
1085
1084
1086
Returns
@@ -1350,8 +1352,10 @@ def pipe(self, func, *args, **kwargs):
1350
1352
Function to apply to the Styler. Alternatively, a
1351
1353
``(callable, keyword)`` tuple where ``keyword`` is a string
1352
1354
indicating the keyword of ``callable`` that expects the Styler.
1353
- *args, **kwargs :
1355
+ *args : optional
1354
1356
Arguments passed to `func`.
1357
+ **kwargs : optional
1358
+ A dictionary of keyword arguments passed into ``func``.
1355
1359
1356
1360
Returns
1357
1361
-------
0 commit comments