小编典典

Python Pandas按多个索引范围切片数据框

python

用更多索引范围(例如by10:1225:28)对数据帧进行切片的pythonic方法是什么?

我想要一个更优雅的方式:

df = pd.DataFrame({'a':range(10,100)})
df.iloc[[i for i in range(10,12)] + [i for i in range(25,28)]]

结果:

     a
10  20
11  21
25  35
26  36
27  37

像这样的东西会更优雅:

df.iloc[(10:12, 25:28)]

阅读 230

收藏
2020-12-20

共1个答案

小编典典

您可以使用numpy的r_“切片技巧”:

df = pd.DataFrame({'a':range(10,100)})
df.iloc[pd.np.r_[10:12, 25:28]]

给出:

     a
10  20
11  21
25  35
26  36
27  37
2020-12-20