gpt4 book ai didi

Python Pandas 相当于 excel 的填充句柄?

转载 作者:太空宇宙 更新时间:2023-11-03 21:43:51 25 4
gpt4 key购买 nike

是否有与 MS Excel 填充句柄等效的 Pandas 函数?

Fill Handle from MS Excel

如果选择了多个单元格,它会向下填充数据或扩展一系列数据。我的特定应用程序是用数据框中特定行的特定列中的设定值填充,而不一定填充一系列。

最佳答案

这个简单的函数基本上满足了我的要求。我认为如果可以将 ffill 修改为这样填写就好了...

def fill_down(df, col, val, start, end = 0, interval = 1):
if not end:
end = len(df)
for i in range(start,end,interval):
df[col].iloc[i] += val
return df

关于Python Pandas 相当于 excel 的填充句柄?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52651074/

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