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/v0.15.0.txt
+4-3
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ users upgrade to this version.
27
27
28
28
.. warning::
29
29
30
-
In 0.15.0 ``Index`` has internaly been refactored to no longer sub-class ``ndarray``
30
+
In 0.15.0 ``Index`` has internally been refactored to no longer sub-class ``ndarray``
31
31
but instead subclass ``PandasObject``, similarly to the rest of the pandas objects. This change allows very easy sub-classing and creation of new index types. This should be
32
32
a transparent change with only very limited API implications (See the :ref:`Internal Refactoring <whatsnew_0150.refactoring>`)
33
33
@@ -141,7 +141,7 @@ API changes
141
141
Internal Refactoring
142
142
~~~~~~~~~~~~~~~~~~~~
143
143
144
-
In 0.15.0 ``Index`` has internaly been refactored to no longer sub-class ``ndarray``
144
+
In 0.15.0 ``Index`` has internally been refactored to no longer sub-class ``ndarray``
145
145
but instead subclass ``PandasObject``, similarly to the rest of the pandas objects. This change allows very easy sub-classing and creation of new index types. This should be
146
146
a transparent change with only very limited API implications (:issue:`5080`,:issue:`7439`,:issue:`7796`)
147
147
@@ -158,6 +158,7 @@ a transparent change with only very limited API implications (:issue:`5080`,:iss
158
158
arr<=idx
159
159
arr>idx
160
160
161
+
- when plotting with a ``PeriodIndex``. The ``matplotlib`` internal axes will now be arrays of ``Period`` rather than a ``PeriodIndex``. (this is similar to how a ``DatetimeIndex`` passess arrays of ``datetimes`` now)
161
162
- ``:func:`~pandas.core.index.MultiIndex.repeat` now is available
162
163
163
164
.. _whatsnew_0150.cat:
@@ -284,7 +285,7 @@ Performance
284
285
~~~~~~~~~~~
285
286
286
287
- Performance improvements in ``DatetimeIndex.__iter__`` to allow faster iteration (:issue:`7683`)
287
-
288
+
- Performance improvements in ``Period`` creation (and ``PeriodIndex`` setitem) (:issue:`5155`)
0 commit comments