我想知道如何从熊猫系列中排除一个或多个项目。例如:
s = pd.Series(data=range(10), index=[chr(ord('A') + x) for x in range(10)])
现在我想排除 B、D、E 行
一种极其低效的方法是这样做:
index = s.index
for col in ['B','D','E']:
index = index.delete(index.get_loc(col))
new_series = s[index]
有没有更好的方法来做到这一点?
谢谢。