I have a data frame with one column which contains long text descriptions.
I would like to display all the text without truncating it, but in a manner in which the column makes wider instead of making the row higher.
If I let pandas' default settings, I get next:
But if I try to remove truncate using pd.set_option('display.max_colwidth', -1), the row gets higher while row width mantains almost equal:


pd.set_option('max_colwidth', -1)but also the row gets higher because I choose a very long text-1returnsValueError: Value must be a nonnegative integer or Nonein pandas 1.0.0 why? is -1 deprecated. I want to have the behaviour of-1screenshot above. how?-1is deprecated as of pandas 1.0.0. Butpd.set_option('max_colwidth', None)should give the same result