给定此数据集:
ID timestamp type
1 2022-12-12 01:00:00 TypeA
2 2022-12-12 05:00:00 TypeA
3 2022-12-12 06:00:00 TypeA
4 2022-12-12 07:00.00 TypeB
5 2022-12-13 00:00:00 TypeA
6 2022-12-13 02:00:00 TypeB
7 2022-12-13 23:00:00 TypeA
对于每一行,我想计算最近N小时内相同类型的行数,在本例中,N=24h,计算结果为:
ID timestamp type count
1 2022-12-12 01:00:00 TypeA 0
2 2022-12-12 05:00:00 TypeA 1
3 2022-12-12 06:00:00 TypeA 2
4 2022-12-12 07:00.00 TypeB 0
5 2022-12-13 00:00:00 TypeA 3
6 2022-12-13 02:00:00 TypeB 1
7 2022-12-13 23:00:00 TypeA 1
1条答案
按热度按时间fzsnzjdm1#
我不知道这是不是你想要的?