Skip to content

Commit 03fe12e

Browse files
committed
fix data
1 parent 5af521c commit 03fe12e

File tree

2 files changed

+2
-47
lines changed

2 files changed

+2
-47
lines changed

data/codeage.csv

Lines changed: 1 addition & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,91 +1,46 @@
11
2019-07-25;17929
2-
32
2019-08-22;17526
4-
53
2019-08-23;17602
6-
74
2019-09-01;17296
8-
95
2019-10-04;17174
10-
116
2019-10-07;17234
12-
137
2019-10-09;17278
14-
158
2019-10-15;17901
16-
179
2019-10-22;18081
18-
1910
2019-10-26;18181
20-
2111
2020-02-09;20716
22-
2312
2020-04-26;23086
24-
2513
2020-05-21;23137
26-
2714
2020-09-06;22711
28-
2915
2020-10-12;22971
30-
3116
2020-11-26;23962
32-
3317
2020-12-27;17160
34-
3518
2021-06-29;20279
36-
3719
2021-09-19;21179
38-
3920
2021-11-02;21393
40-
4121
2022-01-29;21841
42-
4322
2022-07-02;22138
44-
4523
2022-09-12;25583
46-
4724
2022-11-06;27122
48-
4925
2023-02-19;26689
50-
5126
2023-12-15;28049
52-
5327
2024-03-08;25799
54-
5528
2024-03-31;26811
56-
5729
2024-05-12;26803
58-
5930
2024-07-08;34062
60-
6131
2024-07-12;34107
62-
6332
2024-09-16;34811
64-
6533
2024-09-19;34895
66-
6734
2024-12-13;39345
68-
6935
2025-02-17;39934
70-
7136
2025-02-28;40352
72-
7337
2025-04-12;41904
74-
7538
2025-05-13;47484
76-
7739
2025-06-03;49776
78-
7940
2025-07-01;54151
80-
8141
2025-08-04;54668
82-
8342
2025-08-20;55159
84-
8543
2025-09-12;56999
86-
8744
2025-12-12;58242
88-
8945
2025-12-13;58476
90-
91-
2025-12-14;58476
46+
2025-12-14;58476

year-annotate/gnuplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# sort the input data, in case dates are all over the place
1212
with open("data/codeage.csv") as source:
13-
lines = sorted([line for line in source.readlines() if line])
13+
lines = sorted([line.strip() for line in source.readlines() if line.strip()])
1414
with open("data/codeage.csv", "w") as output:
1515
output.write("\n".join(lines))
1616

0 commit comments

Comments
 (0)