我有一个包含以下列的数据框:
name, date, day_index, value
我想在同一个数据框中添加第 4 列,它是每个名称的第 3 列(值)的指数加权移动平均值,按第一个日期排序,然后按 day_index 排序。我可以使用以下代码将其生成为一个系列。
df.sort_values(['date','day_index'],inplace=True)
ecw_series = df.groupby('name').apply(lambda x:
x["value"].ewm(halflife=2).mean())
但是,如果我尝试直接将其添加到原始数据框中,则会收到以下错误:
df['ecw'] = df.groupby('name').apply(lambda x:
x["value"].ewm(halflife=2).mean())
incompatible index of inserted column with frame index
如果我尝试将系列与数据框合并,则会收到以下错误:
df['index'] = df.index
df = df.merge(ecw_series, left_on=['name','index'],right_index=True)
can not merge DataFrame with instance of type <class
'pandas.core.series.Series'
此时,我正在考虑将系列转换为数据框,然后合并。但我相信一定有更好的方法。