circulate/sslc_bug.py
author Prabhu Ramachandran <prabhu@aero.iitb.ac.in>
Mon, 14 Jun 2010 20:16:05 -0400
branchscipy2010
changeset 399 7775af81b51a
parent 359 cb17c87b090e
permissions -rw-r--r--
Initial checkin of file with details of the plan for the tutorial.

science = {}

for record in open('sslc1.txt'):
#    record = record.strip()
    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

figure(1)
pie(science.values(), labels=science.keys())
title('Students scoring 90% and above in science by region')
savefig('/tmp/science.png')