gpt4 book ai didi

python - 如何使用一行在 Pandas 中选择范围

转载 作者:太空狗 更新时间:2023-10-29 20:21:31 25 4
gpt4 key购买 nike

我有一个 Pandas 数据框。

我在另一个进程中从该数据框中选择了一行。

在另一种方法中,我现在需要从该行所在的数据框中选择一个范围,如果有这么多行,则返回 55 行。

下面是一些伪代码,希望对你有帮助:

df = DataFrame from csv

row = df[3454]

index = row.index
start = max(0, index - 55)
end = max(1, index)
dfRange = df[start:end]

最佳答案

应该这样做

integer_location = np.where(df.index == 3454)[0][0]
start = max(0, integer_location - 55)
end = max(1, integer_location)
dfRange = df.iloc[start:end]

此链接有更多信息 Getting the integer index of a Pandas DataFrame row fulfilling a condition?

关于python - 如何使用一行在 Pandas 中选择范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25681579/

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