熊猫自定义函数滚动返回字典

时间:2019-03-28 09:29:46

标签: python pandas rolling-computation

我试图在熊猫数据框中使用滚动,并对其应用自定义功能。问题是,即时通讯试图返回字典,但滚动不会接受它。我只想要一个实数,但我需要一本字典。我该怎么办?

我不知道还能尝试什么,因为我真的需要我的函数返回该字典

def my_function():
     dictionary = *call some function here that would return a dictionary
     return dictionary
dataframe_new = dataframe.rolling('1T').apply(lambda x: my_function(x))

->出现错误:必须为实数,而不是dict

我希望最终的数据帧中包含包含字典的单元格

0 个答案:

没有答案