One column in my Pandas dataframe is too long. How can I set max row height (not number of rows in a dataframe) in pandas so that I can truncate the cells with too much content and have a balanced view of all columns?
Not asking for
pd.set_option('display.height', 500)
pd.set_option('display.max_rows', 500)
which sets the max number of rows in a dataframe.