Skip to content

Commit 3f8961c

Browse files
committed
ENH: use max_columns=0 by default to use terminal size
1 parent 608231a commit 3f8961c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ def set_eng_float_format(precision=3, use_eng_prefix=False):
480480
_float_format = lambda x: '%.4g' % x
481481
_column_space = 12
482482
_max_rows = 500
483-
_max_columns = 10
483+
_max_columns = 0
484484

485485
def _pfixed(s, space, na_rep=None, float_format=None):
486486
if isinstance(s, float):

0 commit comments

Comments
 (0)