Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some data that has dates in it such as:

1979-02-15
1979-02-15
1979-02-17
1979-02-17

I would like to group the data both by year, month, and date so that the data looks like

1979
02
15

1979-02-15
1979-02-15

1979
02
17

1979-02-17
1979-02-17

I have found the function

grouped = df.groupby(lambda x: x.year)

but this only allows for grouping by the year. So, my question is how do I do multi-level grouping by date in pandas?

share|improve this question

1 Answer

up vote 3 down vote accepted

You can pass multiple keys to groupby as a list:

from pandas import *
from numpy.random import randn
rng = date_range('1/1/2011', periods=7200, freq='H')
ts = Series(randn(len(rng)), index=rng)
for key, data in ts.groupby([rng.year, rng.month]):
    print key, data.sum()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.