gpt4 book ai didi

python - 列表插值删除任意值 - np.interp

转载 作者:太空宇宙 更新时间:2023-11-03 19:07:56 24 4
gpt4 key购买 nike

我是 python 编码新手:

我有一个温度列表,对于未记录温度的日子,使用值 9999。我想使用 np.interp tp 通过列表进行插值以删除 9999 和估计值。例如

最大温度 = [40, 35, 32, 31, 9999, 9999, 9999, 26, 27, ... ... 40, 42]

最佳答案

已解决 - 使用:

from pandas import *
a = [1,2,3,None,5]
b = Series(a).interpolate()
b = [1,2,3,4,5]

比 np.interp() 简单

关于python - 列表插值删除任意值 - np.interp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14100460/

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