I have data with a Date. I want to group all things by the month interval in which they reside.
So say I have:
date, value
2015-04-01, 1
2015-04-28, 2
2015-05-04, 3
2015-05-09, 4
Then I would like to end up with the groupings
[1]
2015-04-01, 1
2015-04-28, 2
[2]
2015-05-04, 3
2015-05-09, 4
Note all the data is retained. It's just grouped based on the month.
Thanks in advance