diff options
author | Nishanth Amuluru | 2010-12-14 23:10:24 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2010-12-14 23:10:24 +0530 |
commit | df4bbf6c03e18c708d33f668b839b9d776c75402 (patch) | |
tree | 54ea5ff11fb2afabee0a68d80a7a21a988a19d59 /circulate/sslc_science.py | |
parent | 86924d34a4141617eb286dffeb5acd8ccd0f6f10 (diff) | |
download | workshops-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.py | 27 |
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') |