6

我在 python 中有一个带有日期(日期时间)的向量。如何从该向量上的出现中绘制具有 15 分钟 bin 的直方图?

这是我所做的:

StartTime = []
for b in myEvents:
    StartTime.append(b['logDate'].time())

如您所见,我将日期转换为时间。(我从 mongoDB 查询中获取 myEvents)

fig2 = plt.figure()
ax = fig2.add_subplot(111)
ax.grid(True,which='both')
ax.hist(StartTime,100)

我得到的错误是:

TypeError: can't compare datetime.time to float

我理解这个错误,但我不知道如何解决它。

非常感谢您的帮助

4

1 回答 1

6

如果你想按小时、分钟或秒分类,应该很容易:

ts = np.array([ datetime.time(random.randint(24),*random.randint(60,size=2)) for i in range(100) ])
hist([t.hour for t in ts], bins = 24) # to bin by hour

此外,对于十五分钟的垃圾箱,但这里的问题是现在的单位是十进制小时:

hist([t.hour + t.minute/60. for t in ts], bins = 24*60/15)
于 2013-03-18T13:57:10.533 回答