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
Conflicts:
pandas/tseries/base.py
use new format_data
updates
Fix detection of good width
more fixes
Change [
Conflicts:
pandas/core/index.py
more fixes
revsised according to comments
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.16.1.txt
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,10 @@ Highlights include:
13
13
- New section on how-to-contribute to *pandas*, see :ref:`here <contributing>`
14
14
- Revised "Merge, join, and concatenate" documentation, including graphical examples to make it easier to understand each operations, see :ref:`here <merging>`
15
15
- New method ``sample`` for drawing random samples from Series, DataFrames and Panels. See :ref:`here <whatsnew_0161.enhancements.sample>`
16
-
- ``BusinessHour`` date-offset is now supported, see :ref:`here <timeseries.businesshour>`
16
+
- The default ``Index`` printing has changed to a more uniform format, see :ref:`here <whatsnew_0161.index_repr>`
17
+
- ``BusinessHour`` datetime-offset is now supported, see :ref:`here <timeseries.businesshour>`
18
+
19
+
>>>>>>> more fixes
17
20
- Further enhancement to the ``.str`` accessor to make string operations easier, see :ref:`here <whatsnew_0161.enhancements.string>`
18
21
19
22
.. contents:: What's new in v0.16.1
@@ -273,8 +276,7 @@ API changes
273
276
Index Representation
274
277
~~~~~~~~~~~~~~~~~~~~
275
278
276
-
The string representation of ``Index`` and its sub-classes have now been unified. ``Index, Int64Index, Float64Index, CategoricalIndex`` are single-line display. The datetimelikes ``DatetimeIndex, PeriodIndex, TimedeltaIndex`` & ``MultiIndex`` will display in a multi-line format showing much more of the index values. The display width responds to the option ``display.max_seq_items``,
277
-
which is now defaulted to 20 (previously was 100). (:issue:`6482`)
279
+
The string representation of ``Index`` and its sub-classes have now been unified. These will show a single-line display if there are few values; a wrapped multi-line display for a lot of values (but less than ``display.max_seq_items``; if lots of items (> ``display.max_seq_items``) will show a truncated display (the head and tail of the data). The formatting for ``MultiIndex`` is unchanges (a multi-line wrapped display). The display width responds to the option ``display.max_seq_items``, which is defaulted to 100. (:issue:`6482`)
0 commit comments