如何使用groupby-transform-b​​ottleneck函数查找滚动平均值和标准偏差

时间:2019-01-22 13:34:59

标签: python pandas group-by transform rolling-average

我有(555,000 * 50)的数据,我想在按某些列(设施,过程代码)分组后找到滚动平均值(6个月)和列(gcr)的SD。我的代码正在为window = 1运行。但是当我增加窗口大小时抛出错误。请帮我解决问题

data.loc[["facility", 'procedurecode', 'gcr']].dropna().groupby(["facility", 'procedurecode'])['gcr'].transform(lambda x : bn.move_mean(x, window =6, min_count=1))

错误:

Error

0 个答案:

没有答案