猿问
有没有办法在熊猫中查看更多列。它只列出第一列和最后一列
Pandas 只显示第一列和最后一列以及 id。中间的所有其他列及其值都显示为 '...' 。有没有办法列出更多的列?
慕无忌1623718
浏览 181
回答 2
2回答
慕慕森
从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)
0
0
0
湖上湖
我假设你在谈论熊猫。如果是这样,您可以使用以下方法调整参数pd.set_option('display.max_columns', 500) # or whatever number you want
0
0
0
随时随地看视频
慕课网APP
相关分类
Python
我要回答