Using the following functions, I already managed to prevent truncation in the output in my notebook:
pd.set_option('display.max_colwidth', 200)
pd.set_option('display.max_columns', 0)
However, it still breaks long lines within some cells (not truncates!). How can I prevent it from doing that?
(I don't care how wide the total table will be, because I can simply scroll in the output of the notebook cell ...)