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()
If you want to set options temporarily to display one large DataFrame, you can use option_context:
with pd.option_context('display.max_rows', None, 'display.max_columns', None): print (df)
Option values are restored automatically when you exit the with block.
with