I'm using pandas 1.2.4
and python 3.9.1
.
As suggested here I have reset the display options as follows:
import pandas as pd
pd.set_option('display.max_rows', None)
pd.set_option('display.max_columns', None)
pd.set_option('display.width', None)
I also tried adding
pd.set_option('expand_frame_repr', True)
without success.
The output is however still truncated starting from column 5 (49 characters:)
821285;chr17:57851246:+;chr17:57721637:+;ENSG0...
What am I missing?