So, I have a pandas data frame with two fields
| partition | account_list |
|---|---|
| 1 | [id1,id2,id3,...] |
| 2 | [id4,id6,id5,...] |
since the list is quite long and I want to see the complete content I'm using
pd.set_option('display.max_rows', None) pd.set_option('display.max_columns', None) pd.set_option('display.width', None) pd.set_option('display.max_colwidth', -1) louvain_communities.limit(tot_communities).toPandas() nevertheless, as you can see (Jupiter I think) still truncate the column (I had to edit out the data for privacy)
Is there a way to fix this? I really need to check have the complete list, not truncated, to be shown.
