More work on cover
This commit is contained in:
parent
d35a71e00e
commit
4b91d5a0c6
5 changed files with 25215 additions and 228 deletions
22428
cover/cover.svg
Normal file
22428
cover/cover.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 827 KiB |
14
cover/histogram.py
Normal file
14
cover/histogram.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
f = open('submissions.csv')
|
||||
for i, line in enumerate(f):
|
||||
line = line.strip()
|
||||
date, num = line.split(',')
|
||||
date = date.replace('-', '')
|
||||
num = int(num)
|
||||
print(f""" <rect
|
||||
style="fill:#ffffff;fill-opacity:0.33;stroke-width:0.000540929;stroke:none;stroke-opacity:1"
|
||||
id="hist{date}"
|
||||
width="{352.6 / 2772}"
|
||||
height="{num * (200 / 38771)}"
|
||||
x="{i * 352.6 / 2772}"
|
||||
y="{240 - num * (200 / 38771)}"
|
||||
inkscape:label="hist{date}" />""")
|
2772
cover/submissions.csv
Normal file
2772
cover/submissions.csv
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue