在下面的代码片段中,我想就地进行格式转换,而不必保留另一个临时变量 (df)
df = other_df.set_index('datetime_created').groupby(pd.TimeGrouper("M")).aggregate({...complex dict...})
df.index = df.index.format(formatter=lambda x: x.strftime('%b %Y'))
df.plot.bar(sharex=True, stacked=True)