gpt4 book ai didi

python - 在 Pandas 中每 5 行选择前 2 行

转载 作者:行者123 更新时间:2023-12-05 01:10:29 26 4
gpt4 key购买 nike

我想在 pandas 数据框中每 5 行选择前两行。我该怎么做?

考虑以下数据框:

col1  | col2 | col3 
1 | 1 | 1
2. | 2. | 2
3. | 3. | 3
4 | 4 | 4
5. | 5. | 5
6. | 6. | 6
7. | 7. | 7

我想得到以下值

    col1  | col2 | col3 
1 | 1 | 1
2. | 2. | 2

    col1  | col2 | col3
6. | 6. | 6
7. | 7. | 7

非常感谢您的帮助!!!

最佳答案

使用索引上的地板部门和 groupby head :

df.groupby(df.index//5).head(2)

关于python - 在 Pandas 中每 5 行选择前 2 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64057516/

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