I have a data and here has some date time.
like this:
JavaScript
x
32
32
1
datetime
2
2022-01-01
3
2022-02-01
4
2022-02-01
5
2022-03-01
6
2022-03-01
7
2022-03-01
8
2022-04-01
9
2022-04-01
10
2022-04-01
11
2022-04-01
12
2022-04-01
13
2022-04-01
14
2022-04-01
15
2022-04-01
16
2022-04-01
17
2022-05-01
18
2022-05-01
19
2022-05-01
20
2022-05-01
21
2022-05-01
22
2022-05-01
23
2022-05-01
24
2022-05-01
25
2022-05-01
26
2022-05-01
27
2022-05-01
28
2022-05-01
29
2022-05-01
30
2022-05-01
31
2022-05-01
32
I need to count monthly total so I do something like this
my code is:
JavaScript
1
8
1
df = pd.read_csv('example.csv')
2
example_per_month = []
3
for a in range(1,6):
4
example = {}
5
example[str(a)] = len(df[(df['datetime'] >= '2022-0'+str(a)+'-01')&(df['datetime'] <= '2022-0'+str(a)+'-31'))])
6
example_per_month.append(example)
7
print(example_per_month)
8
And her is my output:
JavaScript
1
2
1
[{'1':1},{'2':2},{'3':3},{'4':9},{'5':14}]
2
But I need the total count month by month now.
expected output:
JavaScript
1
2
1
[{'1':1},{'2':3},{'3':6},{'4':15},{'5':29}]
2
Thanks in advance
Advertisement
Answer
this is not the exact solution you want but hope this will help you to find a solution
JavaScript
1
12
12
1
values = [{'1':10},{'2':20},{'3':30},{'4':9},{'5':14},{'6':37}]
2
3
loop = 1
4
total = 0
5
for val in values:
6
total += val[str(loop)]
7
val[str(loop)] = total
8
print(val[str(loop)])
9
loop += 1
10
11
print(total)
12