summaryrefslogtreecommitdiff
path: root/circulate/debugging.py
diff options
context:
space:
mode:
Diffstat (limited to 'circulate/debugging.py')
-rw-r--r--circulate/debugging.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/circulate/debugging.py b/circulate/debugging.py
deleted file mode 100644
index 2af81aa..0000000
--- a/circulate/debugging.py
+++ /dev/null
@@ -1,22 +0,0 @@
-
-def foo(science):
- for record in open('sslc1.txt'):
- fields = record.split(';')
- region_code = fields[0].strip()
-
- score_str = fields[6].strip()
- score = int(score_str) if score_str != 'AA' \
- else 0
-
- if score > 90:
- science[region_code] += 1
-
-def bar():
- science = {}
- science = foo(science)
- pie(science.values(), labels=science.keys())
- savefig('science.png')
-
-if __name__ == '__main__':
- bar()
-