这是我正在使用的代码:import pandas as pd
test3 = pd.Series([1,2,3], index = ['a','b','c'])
test3 = test3.reindex(index = ['f','g','z'])
因此,本来一切都很好,并且test3的索引为'a''b''c',其值为1,2,3。但是当我重新建立test3的索引时,我发现我的值1 2 3丢失了。这是为什么?所需的输出将是:
f 1
g 2
z 3
最佳答案
docs在此行为上很清楚:
如果您只想覆盖索引值,请执行以下操作:
In [32]:
test3.index = ['f','g','z']
test3
Out[32]:
f 1
g 2
z 3
dtype: int64
关于python - Python Reindex产生Nan,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35108046/