|
142 | 142 | Name or list of names to sort by.
|
143 | 143 |
|
144 | 144 | - if `axis` is 0 or `'index'` then `by` may contain index
|
145 |
| - levels and/or column labels |
| 145 | + levels and/or column labels. |
146 | 146 | - if `axis` is 1 or `'columns'` then `by` may contain column
|
147 |
| - levels and/or index labels |
| 147 | + levels and/or index labels. |
148 | 148 |
|
149 | 149 | .. versionchanged:: 0.23.0
|
| 150 | +
|
150 | 151 | Allow specifying index or column level names.""",
|
151 | 152 | versionadded_to_excel="",
|
152 | 153 | optional_labels="""labels : array-like, optional
|
@@ -2148,9 +2149,10 @@ def to_html(
|
2148 | 2149 | A ``border=border`` attribute is included in the opening
|
2149 | 2150 | `<table>` tag. Default ``pd.options.display.html.border``.
|
2150 | 2151 | encoding : str, default "utf-8"
|
2151 |
| - Set character encoding |
| 2152 | + Set character encoding. |
2152 | 2153 |
|
2153 | 2154 | .. versionadded:: 1.0
|
| 2155 | +
|
2154 | 2156 | table_id : str, optional
|
2155 | 2157 | A css id is included in the opening `<table>` tag if specified.
|
2156 | 2158 |
|
@@ -7877,7 +7879,7 @@ def idxmin(self, axis=0, skipna=True):
|
7877 | 7879 | Parameters
|
7878 | 7880 | ----------
|
7879 | 7881 | axis : {0 or 'index', 1 or 'columns'}, default 0
|
7880 |
| - The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise |
| 7882 | + The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise. |
7881 | 7883 | skipna : bool, default True
|
7882 | 7884 | Exclude NA/null values. If an entire row/column is NA, the result
|
7883 | 7885 | will be NA.
|
@@ -7915,7 +7917,7 @@ def idxmax(self, axis=0, skipna=True):
|
7915 | 7917 | Parameters
|
7916 | 7918 | ----------
|
7917 | 7919 | axis : {0 or 'index', 1 or 'columns'}, default 0
|
7918 |
| - The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise |
| 7920 | + The axis to use. 0 or 'index' for row-wise, 1 or 'columns' for column-wise. |
7919 | 7921 | skipna : bool, default True
|
7920 | 7922 | Exclude NA/null values. If an entire row/column is NA, the result
|
7921 | 7923 | will be NA.
|
|
0 commit comments