I have been passing the last days trying to find a solution for this problem.
I have a DataFrame as in the example below:
2000-01-01 00:00:00 0
2000-01-01 00:01:00 1
2000-01-01 00:02:00 2
2000-01-01 00:03:00 3
2000-01-01 00:04:00 4
2000-01-01 00:05:00 5
2000-01-01 00:06:00 6
2000-01-01 00:07:00 7
2000-01-01 00:08:00 8
2000-01-01 00:09:00 9
2000-01-01 00:10:00 10
2000-01-01 00:11:00 11
2000-01-01 00:12:00 12
2000-01-01 00:13:00 13
2000-01-01 00:14:00 14
2000-01-01 00:15:00 15
2000-01-01 00:16:00 16
2000-01-01 00:17:00 17
2000-01-01 00:18:00 18
2000-01-01 00:19:00 19
2000-01-01 00:20:00 20
2000-01-01 00:21:00 21
2000-01-01 00:22:00 22
2000-01-01 00:23:00 23
2000-01-01 00:24:00 24
2000-01-01 00:25:00 25
2000-01-01 00:26:00 26
2000-01-01 00:27:00 27
2000-01-01 00:28:00 28
2000-01-01 00:29:00 29
The goal here is to create a for loop with a specific timedelta (in this case is 15min) and return the frequency of the data in that window.
For example:
2000-01-01 00:00:00 0
2000-01-01 00:15:00 15
Data Freq.
0 1
1 1
2 1
... ...
15 1
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…