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-4
Original file line number
Diff line number
Diff line change
@@ -254,15 +254,13 @@ API changes
254
254
Index Representation
255
255
~~~~~~~~~~~~~~~~~~~~
256
256
257
-
The string representation of ``Index`` and its sub-classes have now been unified. These are all uniform in their output
258
-
formats, except for ``MultiIndex``, which has a multi-line repr. The display width responds to the option ``display.max_seq_len``,
259
-
which is now defaulted to 10 (previously was 100). (:issue:`6482`)
257
+
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``,
258
+
which is now defaulted to 20 (previously was 100). (:issue:`6482`)
0 commit comments