Is there a way to widen the display of output in either interactive or script-execution mode?
Specifically, I am using the describe()
function on a pand
Try this:
pd.set_option('display.expand_frame_repr', False)
From the documentation:
display.expand_frame_repr : boolean
Whether to print out the full DataFrame repr for wide DataFrames across multiple lines, max_columns is still respected, but the output will wrap-around across multiple “pages” if it’s width exceeds display.width. [default: True] [currently: True]
See: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.set_option.html