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
describe()
Only using these 3 lines worked for me:
pd.set_option('display.max_columns', None) pd.set_option('display.expand_frame_repr', False) pd.set_option('max_colwidth', -1)
Anaconda / Python 3.6.5 / pandas: 0.23.0 / Visual Studio Code 1.26