How To Configure Display Output In Ipython Pandas
I'm trying to configure my IPython output in my OS X terminal, but it would seem that none of the changes I'm trying to set are taking effect. I'm trying to configure the display s
Solution 1:
Just for completeness (I'll add my comment as an answer), you missed out:
pd.options.display.max_colwidth # defaultis50
this restricted the maximum length of a single column.
There are quite a few options to configure here, if you're using ipython then tab complete to find the full set of display options:
pd.options.display.<tab>
Post a Comment for "How To Configure Display Output In Ipython Pandas"