gpt4 book ai didi

python - 在 Pandas 中调用多行

转载 作者:行者123 更新时间:2023-11-28 20:13:49 24 4
gpt4 key购买 nike

我正在尝试从我的数据中删除多行。我可以使用以下方法删除行:

dt=dt.drop([40,41,42,43,44,45])

但我想知道是否有更简单的方法。我试过:

dt=dt.drop([40:45])

但遗憾的是它没有用。

最佳答案

我会推荐np.r_

df.drop(np.r_[40:50+1])

如果你想同时放下两个范围

np.r_[40:50+1,1:4+1]
Out[719]: array([40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 1, 2, 3, 4])

关于python - 在 Pandas 中调用多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52414440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com