像这样的东西;请注意,没有定义填充 customer_id (因为您可能在 groupby 或其他东西中有这个)。
最后你可能需要一个reset_index
(如果需要)
In [130]: df2 = df.set_index('month_year')
In [131]: df2 = df2.sort_index()
In [132]: df2
Out[132]:
customer_id sales
month_year
2011-07 12 33.14
2011-11 12 182.06
2012-01 12 71.24
2012-03 12 155.32
2012-05 12 2.58
In [133]: df2.reindex(pd.period_range(df2.index[0],df2.index[-1],freq='M'))
Out[133]:
customer_id sales
2011-07 12 33.14
2011-08 NaN NaN
2011-09 NaN NaN
2011-10 NaN NaN
2011-11 12 182.06
2011-12 NaN NaN
2012-01 12 71.24
2012-02 NaN NaN
2012-03 12 155.32
2012-04 NaN NaN
2012-05 12 2.58
In [135]: df2['customer_id'] = 12
In [136]: df2.fillna(0.0)
Out[136]:
customer_id sales
2011-07 12 33.14
2011-08 12 0.00
2011-09 12 0.00
2011-10 12 0.00
2011-11 12 182.06
2011-12 12 0.00
2012-01 12 71.24
2012-02 12 0.00
2012-03 12 155.32
2012-04 12 0.00
2012-05 12 2.58