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
increase limits for max_seq_items & printing for Index
add extended repr for datetimelike indexes
fix tseries/test_base for repr
adjust docs for repr-name
use new format_data on all Index types
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.16.1.txt
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -273,15 +273,13 @@ API changes
273
273
Index Representation
274
274
~~~~~~~~~~~~~~~~~~~~
275
275
276
-
The string representation of ``Index`` and its sub-classes have now been unified. These are all uniform in their output
277
-
formats, except for ``MultiIndex``, which has a multi-line repr. The display width responds to the option ``display.max_seq_len``,
278
-
which is now defaulted to 10 (previously was 100). (:issue:`6482`)
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`)
0 commit comments