5

我有一个日期字段 Datetime ,我想要一个简单的项目计数,但我喜欢按日期顺序排列......我现在拥有的......

plot_data.Quradate.value_counts() # of respondents by survey date
2011-07-15    702
2011-04-15    696
2011-10-15    661
2010-01-15    636
2011-01-15    587
2010-10-15    570
2012-01-15    534
2010-07-15    525
2010-04-15    384
dtype: int64

应该很简单,但对我来说还不是......

4

1 回答 1

6

正如 Andy 指出的那样(上面的 +TomAugspurger),这是正确的解决方案:

plot_data.Quradate.value_counts().sort_index()

丑陋,但完成工作希望看到更好的解决方案。

resp=pd.DataFrame(plot_data.Quradate.value_counts()) # of respondents by survey date
resp.sort_index() 
于 2013-10-24T19:48:39.877 回答