summaryrefslogtreecommitdiff
path: root/circulate/sslc_science.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/sslc_science.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/sslc_science.py')
-rw-r--r--circulate/sslc_science.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/circulate/sslc_science.py b/circulate/sslc_science.py
deleted file mode 100644
index d3b25b5..0000000
--- a/circulate/sslc_science.py
+++ /dev/null
@@ -1,27 +0,0 @@
-science = {}
-
-for record in open('sslc1.txt'):
-# record = record.strip()
- fields = record.split(';')
-
- region_code = fields[0].strip()
-
- if region_code not in science:
- science[region_code] = 0
-
- score_str = fields[6].strip()
-
-# score = int(score_str) if score_str != 'AA' else 0
-
- if score_str != 'AA':
- score = int(score_str)
- else:
- score = 0
-
- if score > 90:
- science[region_code] += 1
-
-figure(1)
-pie(science.values(), labels=science.keys())
-title('Students scoring 90% and above in science by region')
-savefig('science.png')