参考链接: 在Pandas DataFrame中处理行和列
在print时候,df总是因为数据量过多而显示不完整。
解决方法如下:
#显示所有列
pd.set_option('display.max_columns', None)
#显示所有行
pd.set_option('display.max_rows', None)
#设置value的显示长度为100,默认为50
pd.set_option('max_colwidth',100)
可以参看官网上的资料,自行选择需要修改的参数:
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.set_option.html