Skip to content

Commit

Permalink
DOC: Make highlight functions match documentation (pandas-dev#16999)
Browse files Browse the repository at this point in the history
  • Loading branch information
parchd-1 authored and gfyoung committed Jul 18, 2017
1 parent 6a5e56d commit 34210ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pandas/io/formats/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -1054,9 +1054,9 @@ def highlight_max(self, subset=None, color='yellow', axis=0):
subset: IndexSlice, default None
a valid slice for ``data`` to limit the style application to
color: str, default 'yellow'
axis: int, str, or None; default None
0 or 'index' for columnwise, 1 or 'columns' for rowwise
or ``None`` for tablewise (the default)
axis: int, str, or None; default 0
0 or 'index' for columnwise (default), 1 or 'columns' for rowwise,
or ``None`` for tablewise
Returns
-------
Expand All @@ -1076,9 +1076,9 @@ def highlight_min(self, subset=None, color='yellow', axis=0):
subset: IndexSlice, default None
a valid slice for ``data`` to limit the style application to
color: str, default 'yellow'
axis: int, str, or None; default None
0 or 'index' for columnwise, 1 or 'columns' for rowwise
or ``None`` for tablewise (the default)
axis: int, str, or None; default 0
0 or 'index' for columnwise (default), 1 or 'columns' for rowwise,
or ``None`` for tablewise
Returns
-------
Expand Down

0 comments on commit 34210ac

Please sign in to comment.