You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One special case for the `.str` accessor on `Index` is that if a string method returns `bool`, the `.str` accessor
35
-
will return a `np.array` instead of a boolean `Index` (:issue:`8875`). This enables the following expression
34
+
One special case for the `.str` accessor on ``Index`` is that if a string method returns ``bool``, the ``.str`` accessor
35
+
will return a ``np.array`` instead of a boolean ``Index`` (:issue:`8875`). This enables the following expression
36
36
to work naturally:
37
37
38
38
@@ -46,7 +46,7 @@ Enhancements
46
46
47
47
- ``DataFrame.mask()`` and ``Series.mask()`` now support same keywords as ``where`` (:issue:`8801`)
48
48
49
-
- ``drop`` function can now accept ``errors`` keyword to suppress ValueError raised when any of label does not exist in the target data. (:issue:`6736`)
49
+
- ``drop`` function can now accept ``errors`` keyword to suppress ``ValueError`` raised when any of label does not exist in the target data. (:issue:`6736`)
50
50
51
51
.. ipython:: python
52
52
@@ -61,7 +61,7 @@ Enhancements
61
61
- Allow Panel.shift with ``axis='items'`` (:issue:`9890`)
62
62
63
63
- Trying to write an excel file now raises ``NotImplementedError`` if the ``DataFrame`` has a ``MultiIndex`` instead of writing a broken Excel file. (:issue:`9794`)
64
-
- Allow ``Categorical.add_categories`` to accept `Series` or `np.array`. (:issue:`9927`)
64
+
- Allow ``Categorical.add_categories`` to accept ``Series`` or ``np.array``. (:issue:`9927`)
65
65
66
66
- Add/delete ``str/dt/cat`` accessors dynamically from ``__dir__``. (:issue:`9910`)
67
67
@@ -87,7 +87,7 @@ setting the index of a ``DataFrame/Series`` with a ``category`` dtype would conv
87
87
df.dtypes
88
88
df.B.cat.categories
89
89
90
-
setting the index, will create create a CategoricalIndex
90
+
setting the index, will create create a ``CategoricalIndex``
91
91
92
92
.. ipython :: python
93
93
@@ -179,7 +179,7 @@ Bug Fixes
179
179
180
180
- Fixed bug (:issue:`9542`) where labels did not appear properly in legend of ``DataFrame.plot()``. Passing ``label=`` args also now works, and series indices are no longer mutated.
181
181
- Bug in json serialization when frame has length zero.(:issue:`9805`)
182
-
- Bug in `read_csv` where missing trailing delimiters would cause segfault. (:issue:`5664`)
182
+
- Bug in ``read_csv`` where missing trailing delimiters would cause segfault. (:issue:`5664`)
183
183
- Bug in retaining index name on appending (:issue:`9862`)
184
184
- Bug in ``scatter_matrix`` draws unexpected axis ticklabels (:issue:`5662`)
185
185
- Fixed bug in ``StataWriter`` resulting in changes to input ``DataFrame`` upon save (:issue:`9795`).
0 commit comments