gpt4 book ai didi

python - Pandas - 属性错误 : 'NoneType' object has no attribute 'pipe'

转载 作者:行者123 更新时间:2023-12-03 23:52:10 26 4
gpt4 key购买 nike

我加载了一个 csv,试图通过管道传输一些函数并得到以下错误:
AttributeError: 'NoneType' 对象没有属性 'pipe'

df = pd.read_csv('file.csv')

def func1(df):
df['newcol'] = ...some code

def func2(df):
df['newcol2'] = ...some code

(
df.pipe(func1)
.pipe(func2)
)

当我打印 df 时,它会正常打印数据帧。不知道为什么我会收到那个错误。 Pandas v0.24.2。 python v3.7

最佳答案

您需要return df来自func1,因为它是func2的输入。
我遇到了同样的问题,因为我没有从中间的函数返回 df。希望这可以帮助!!

关于python - Pandas - 属性错误 : 'NoneType' object has no attribute 'pipe' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56028619/

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