标签: python pandas
我有一个非常大的数据框,我需要截断以仅显示前1000列。有没有办法在熊猫中做到这一点?
>>> f.df.shape (1000, 2061)
我知道我可以做df.head(1000)来获得前1000列,我如何砍掉前1000列?
df.head(1000)