I am using Spyder to read a CSV file with many columns. I would like to customize the width of column displayed in console.
I have tried to use set_option to set column width. It works for columns but doesn't work for column labels.
pd.set_option("display.max_colwidth",5)
for example the column label "New revision distributed" is still not displayed with"...".
Anybody know how to set the column label width?
Thanks