I have a csv data file with 101 columns and I would like to see the type for each column. I use
dat=pandas.read_csv("try.csv")
dat.dtypes
It returns only first and last 15 columns with types. All other columns are truncated. And there is ... in between
I wonder how can I see types for all columns? Thanks a lot!