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()
Set column max width using:
pd.set_option('max_colwidth', 800)
This particular statement sets max width to 800px, per column.