我想用该组中的“id”填充一个特定列,即“id”列,并在应用分组重新索引后用 0 向前填充其他列。
我当前使用 0 填充所有缺失值的版本如下所示:
def reindex_by_date(df):
bd = pd.bdate_range('2000-12-18', '2020-12-31')
return df.reindex(bd)
test.groupby('id').apply(reindex_by_date).reset_index(0, drop=True)
但我无法在该组中用 id 填充“id”