summaryrefslogtreecommitdiff
path: root/circulate/debugging.py
diff options
context:
space:
mode:
authorNishanth Amuluru2010-12-14 23:10:24 +0530
committerNishanth Amuluru2010-12-14 23:10:24 +0530
commitdf4bbf6c03e18c708d33f668b839b9d776c75402 (patch)
tree54ea5ff11fb2afabee0a68d80a7a21a988a19d59 /circulate/debugging.py
parent86924d34a4141617eb286dffeb5acd8ccd0f6f10 (diff)
downloadworkshops-df4bbf6c03e18c708d33f668b839b9d776c75402.tar.gz
workshops-df4bbf6c03e18c708d33f668b839b9d776c75402.tar.bz2
workshops-df4bbf6c03e18c708d33f668b839b9d776c75402.zip
removed unwanted files in circulate for scipyin2010
--HG-- branch : scipyin2010
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()
-