diff options
author | Santosh G. Vattam | 2010-01-25 17:53:03 +0530 |
---|---|---|
committer | Santosh G. Vattam | 2010-01-25 17:53:03 +0530 |
commit | 27fba3297e33331039fbae3caff26a0a4b385f46 (patch) | |
tree | 2c5744db9b8a97881cc48cc68dddaa2f88ef1318 /circulate/sslc_science.py | |
parent | 6bd23550d9a318d62c9570f32c23674e0a19b435 (diff) | |
parent | d805f82a51cf85c2ff20dd1c3bb2052dd7a22173 (diff) | |
download | workshops-more-scipy-27fba3297e33331039fbae3caff26a0a4b385f46.tar.gz workshops-more-scipy-27fba3297e33331039fbae3caff26a0a4b385f46.tar.bz2 workshops-more-scipy-27fba3297e33331039fbae3caff26a0a4b385f46.zip |
Branches merged.
Diffstat (limited to 'circulate/sslc_science.py')
-rw-r--r-- | circulate/sslc_science.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/circulate/sslc_science.py b/circulate/sslc_science.py new file mode 100644 index 0000000..83a52ae --- /dev/null +++ b/circulate/sslc_science.py @@ -0,0 +1,22 @@ +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 > 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') |