2021
07-12
07-12
pandas中DataFrame重置索引的几种方法
在pandas中,经常对数据进行处理而导致数据索引顺序混乱,从而影响数据读取、插入等。小笔总结了以下几种重置索引的方法:importpandasaspdimportnumpyasnpdf=pd.DataFrame(np.arange(20).reshape((5,4)),columns=['a','b','c','d'])#得到df:abcd00123145672891011312131415416171819#对其重排顺序,得到索引顺序倒序...
继续阅读 >