标签: python pandas series
假设我有Series,
Series
s = Series(range(10)) a = s[s % 2 == 0]
然后a就像
a
0 0 2 2 4 4 6 6 8 8
我想要做的是将a的索引设置为行号,即
0 0 1 2 2 4 3 6 4 8
如何实现呢?
答案 0 :(得分:4)
使用reset_index
reset_index
a = s[s % 2 == 0].reset_index(drop=True)