gpt4 book ai didi

python - pandas - 识别最接近 null/sentinel 值的行

转载 作者:行者123 更新时间:2023-12-04 13:07:28 26 4
gpt4 key购买 nike

使用以下格式的时间序列数据框,第一列作为索引:

08/11/2021, 100
08/12/2021, null
08/13/2021, null
08/14/2021, 160

我想执行插值返回

08/11/2021, 100
08/12/2021, 120
08/13/2021, 140
08/14/2021, 160

在不拔出 iterrows() 大锤的情况下,获取最接近我的 df 中第一个和最后一个空值的行索引的有效方法是什么? (假设整个系列中可以有多个 null 跨度,我将在每次函数遇到 null 时重复此操作)

最佳答案

无需手动执行任何操作,只需使用interpolate:

df.interpolate()

关于python - pandas - 识别最接近 null/sentinel 值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68732935/

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