I have a dataframe and I want to print all unique elements of a column. So I use df.mycolumn.unique()
, but I get a truncated list:
[SCO, ENG, SPA, NED, ..., AUT, FRA, GER]
How to print all elements without truncation?
I have a dataframe and I want to print all unique elements of a column. So I use df.mycolumn.unique()
, but I get a truncated list:
[SCO, ENG, SPA, NED, ..., AUT, FRA, GER]
How to print all elements without truncation?