python中的reindex_pandas reindex重新索引
reindex 是 pandas 对象的一个重要方法,其作用是创建一个适应新索引的新对象。例如:定义一个 Series 对象为 se1=pd.Series([1,4,-1,2],index=['a','e','d','c']),现在调用 Series 对象的重新索引 se1.reindex(['a','b','c','d','e']),此时,se1 中的元素将会根据新索引进行重排,如果某个索引值当...