在 Pandas 中重新索引一系列 returns NaN
Reindexing a series returns NaNs in Pandas
以下代码returns 到处都是 NaN 的系列:
s = pd.Series([1, 2, 3, 4, 5, 6],
index=pd.MultiIndex.from_product([["A", "B"], ["c", "d", "e"]]))
s.reindex([('E', 'g'), ('E', 'h'), ('E', 'i'), ('F', 'g'), ('F', 'h'), ('F', 'i')])
或
s.reindex(pd.MultiIndex.from_product([['E', 'F'], ['g', 'h', 'i']]))
如何重新索引系列并保留原始值?
这不是reindex
,那是改index
s.index=pd.MultiIndex.from_product([['E', 'F'], ['g', 'h', 'i']])
s
Out[362]:
E g 1
h 2
i 3
F g 4
h 5
i 6
dtype: int64
如果需要将新值设置为二级使用MultiIndex.set_levels
:
s.index = s.index.set_levels(['g', 'h', 'i'], level=1)
print (s)
A g 1
h 2
i 3
B g 4
h 5
i 6
dtype: int64
以下代码returns 到处都是 NaN 的系列:
s = pd.Series([1, 2, 3, 4, 5, 6],
index=pd.MultiIndex.from_product([["A", "B"], ["c", "d", "e"]]))
s.reindex([('E', 'g'), ('E', 'h'), ('E', 'i'), ('F', 'g'), ('F', 'h'), ('F', 'i')])
或
s.reindex(pd.MultiIndex.from_product([['E', 'F'], ['g', 'h', 'i']]))
如何重新索引系列并保留原始值?
这不是reindex
,那是改index
s.index=pd.MultiIndex.from_product([['E', 'F'], ['g', 'h', 'i']])
s
Out[362]:
E g 1
h 2
i 3
F g 4
h 5
i 6
dtype: int64
如果需要将新值设置为二级使用MultiIndex.set_levels
:
s.index = s.index.set_levels(['g', 'h', 'i'], level=1)
print (s)
A g 1
h 2
i 3
B g 4
h 5
i 6
dtype: int64