I have time data like below.
time
0 0:00:30
1 0:01:34
.
.
And I want to draw histogram depends on the time.
For example, this is the x-axis of histogram like 0-8, 9-16, 17-24.
How can I divide and draw it?
I used matplotlib histogram.
plt.hist(dailyData['time'])
plt.show()