Good, I need to show the number of calls that are made every hour in a whole month. So far I was able to do a resample of the CSV so that I stayed as follows:
Cantidad
Fecha
2017-03-01 00:00:00 5
2017-03-01 01:00:00 1
.
.
2017-03-31 22:00:00 7
2017-03-31 23:00:00 2
The date would be a datetimeIndex and group all values in 1 hour intervals. What I need now is to be able to group all the rows by the hour, regardless of the day, that is to say that I stayed this way, for example:
Cantidad
Fecha
2017-03 00:00:00 600
2017-03 01:00:00 200
2017-03 02:00:00 30
.
.
2017-03 22:00:00 500
2017-03 23:00:00 150
Look in several posts and in the panda documentation but I could not see anything that could be useful or that would give me the expected result