I've been looking at this use of cut function: With R: Split time series data into time intervals (say an hour) and then plot the count
I was wondering if there was a way to perform this with just the time. For example:
2001/01/10 9:54
2002/01/10 9:55
2004/01/10 9:50
I would like it to count 3 under the 9:00-9:59 count. Such as:
9:00-59 - count 3
Instead of three different 9:00-59 for each day like:
2001/01/10 9:00-59 - count 1
2002/01/10 9:00-59 - count 1
2004/01/10 9:00-59 - count 1
Hope this makes sense for everyone.