aboutsummaryrefslogtreecommitdiff
path: root/python/deathtable.py
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-07-06 18:20:32 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-07-06 18:41:47 -0400
commita1d245cfd1979ec78bbc01e5125af80071f8cc42 (patch)
tree9bf0ec38631e4f0879940dc4a0b133d78fc2f17c /python/deathtable.py
parent5a18c8a33b90003a2c930a207f766800883c3622 (diff)
File reorganization
More makefile-friendly
Diffstat (limited to 'python/deathtable.py')
-rw-r--r--python/deathtable.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/python/deathtable.py b/python/deathtable.py
deleted file mode 100644
index f393cc8..0000000
--- a/python/deathtable.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from data import trials
-
-print('\\table{')
-print('Trial Size& Date& Introduced& Deaths& Pits formed\\cr\\noalign{\\hrule}')
-for trial in trials:
- print('& '.join(['$\\times$'.join([str(el) for el in trial.size]), str(trial.date), str(trial.intro), str(trial.dead), str(len(trial.pits))])+'\\cr\\noalign{\\hrule}')
-print('}', end='')