我有一个以pandas日期戳作为索引的系列,如何对索引进行切片以便我可以获取特定月份的所有值?
d = {'1993-01-01 00:00:00': 10, '1993-02-01 00:00:00': 12}
s = pandas.Series(d)
s.index = pandas.to_datetime(s.index, utc=True)
答案 0 :(得分:3)
我认为您可以DatetimeIndex.month
使用boolean indexing
:
print (s[s.index.month == 2])
1993-02-01 00:00:00+00:00 12
dtype: int64
答案 1 :(得分:0)
如果按特定月份,你的意思是1993年2月,那么它只是:
s['1993-02']
1993-02-01 00:00:00+00:00 12
dtype: int64
如果你的意思是所有的Februarys,那么你不能比jezrael提供的更好。