I need some help with groupby and expanding mean in python pandas.
I am trying to use pandas expanding mean and groupby. In this image below, I want to group by using the id column and expand mean by date. But the catch is for January I am not using expanding mean. For example, you can think January might be a past month and take the overall mean of the value column and grouping by ids.
For February and March I want to use expanding mean of value column on top of January. So for 7 Feb and id 1, the 44.5 in expanding mean column is basically mean of January before the value of 89 occurs today. The next value for id 1 is on 7-Mar which is inclusive of previous value of 89 on 7 Feb for id = 1.
So basically my idea is taking the overall mean upto Feb 1, and then use expanding mean on top of whatever mean has been calculated upto that date.
id    date    value   count(prior)   expanding mean (after feb)
1     1-Jan    28      4              44.75
2     1-Jan    43      3              37.33
3     1-Jan    69      3              57.00
1     2-Jan    31      4              44.75
2     2-Jan    22      3              37.33
1     7-Jan    82      4              44.75
2     7-Jan    47      3              37.33
3     7-Jan    79      3              57.00
1     8-Jan    38      4              44.75
3     8-Jan    23      3              57.00
1     7-Feb    89      4              44.75
2     7-Feb    22      3              37.33
3     7-Feb    80      3              57.00
2     19-Feb   91      4              33.50
3     19-Feb   97      4              62.75
1     7-Mar    48      5              53.60
2     7-Mar    98      5              45.00
3     7-Mar    35      5              69.60
I've given the count columns as a reference to how the count is increasing. It basically means everything prior to that date.
