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
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.20.0.txt
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ users upgrade to this version.
10
10
Highlights include:
11
11
12
12
- Building pandas for development now requires ``cython >= 0.23`` (:issue:`14831`)
13
-
- The ``.ix`` indexer has been deprecated, see :ref:`here <whatsnew.api_breaking.deprecate_ix>`
13
+
- The ``.ix`` indexer has been deprecated, see :ref:`here <whatsnew_0200.api_breaking.deprecate_ix>`
14
14
15
15
Check the :ref:`API Changes <whatsnew_0200.api_breaking>` and :ref:`deprecations <whatsnew_0200.deprecations>` before updating.
16
16
@@ -144,8 +144,7 @@ Other enhancements
144
144
Backwards incompatible API changes
145
145
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
146
146
147
-
148
-
.. _whatsnew.api_breaking.deprecate_ix
147
+
.. _whatsnew_0200.api_breaking.deprecate_ix
149
148
150
149
Deprecate .ix
151
150
^^^^^^^^^^^^^
@@ -158,7 +157,7 @@ The recommended methods of indexing are:
158
157
- ``.loc`` if you want to *label* index
159
158
- ``.iloc`` if you want to *positionally* index.
160
159
161
-
Using ``.ix`` will now show a ``DeprecationWarning`` with a link to some examples of how to convert code `here <http://pandas.pydata.org/pandas-docs/stable/indexing.html#deprecate_ix>`_
160
+
Using ``.ix`` will now show a ``DeprecationWarning`` with a link to some examples of how to convert code :ref:`here <indexing.deprecate_ix>`.
162
161
163
162
164
163
.. ipython:: python
@@ -192,7 +191,7 @@ Using ``.iloc``. Here we will get the location of the 'A' column, then use *posi
0 commit comments