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/debugging.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/debugging.py')
-rw-r--r-- | circulate/debugging.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/circulate/debugging.py b/circulate/debugging.py deleted file mode 100644 index 2af81aa..0000000 --- a/circulate/debugging.py +++ /dev/null @@ -1,22 +0,0 @@ - -def foo(science): - for record in open('sslc1.txt'): - 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 - -def bar(): - science = {} - science = foo(science) - pie(science.values(), labels=science.keys()) - savefig('science.png') - -if __name__ == '__main__': - bar() - |