circulate/sslc_science.py
author Prabhu Ramachandran <prabhu@aero.iitb.ac.in>
Mon, 21 Jun 2010 00:49:03 -0400
branchscipy2010
changeset 412 ca04d463c573
parent 385 c70118cdde66
permissions -rw-r--r--
ENH: Enhanced the problem set building on the image handing and arrays. Illustrated dtypes, casting and their importance along with an example using RGBA images. Also introduce edge detection.

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')