Pandas 只显示第一列和最后一列以及 id。中间的所有其他列及其值都显示为 '...' 。有没有办法列出更多的列?
2 回答
慕慕森
TA贡献1856条经验 获得超17个赞
从data.corr()您的代码中看到,很明显您在谈论熊猫。您可以调整显示参数以选择您的喜好。
pd.set_option('display.height', 100)
pd.set_option('display.max_rows', 20)
pd.set_option('display.max_columns', 40)
pd.set_option('display.width', 100)
湖上湖
TA贡献2003条经验 获得超2个赞
我假设你在谈论熊猫。如果是这样,您可以使用以下方法调整参数
pd.set_option('display.max_columns', 500) # or whatever number you want
添加回答
举报
0/150
提交
取消