Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试绘制按日期分组的一些熊猫数据框列的计数:
by_date = data.groupby(data.index.day).count()
数据是正确的,但data.index.day我指定的数据不适合绘图目的:
data.index.day
有没有办法指定我想按 Python Date 对象分组,还是我这样做完全错误?
更新:Dan Allan 的resample建议有效,但现在 xticks 无法读取。我应该单独提取它们吗?
resample
resample我认为使用而不是更容易完成这项任务group。怎么样
group
data.resample('D', how='count')