diff options
author | Christopher Burns | 2010-06-29 08:04:19 -0500 |
---|---|---|
committer | Christopher Burns | 2010-06-29 08:04:19 -0500 |
commit | c4a5344924a16484a9bf53c53666f0af82f696e2 (patch) | |
tree | 68685c403dba7a8d701e44fd7f662afe4ebb8790 | |
parent | 3f8d68eb481226b3f48629020a3cd01de86e4bc3 (diff) | |
download | workshops-more-scipy-c4a5344924a16484a9bf53c53666f0af82f696e2.tar.gz workshops-more-scipy-c4a5344924a16484a9bf53c53666f0af82f696e2.tar.bz2 workshops-more-scipy-c4a5344924a16484a9bf53c53666f0af82f696e2.zip |
EHN: Add trival debugging.py example.
--HG--
branch : scipy2010
-rw-r--r-- | circulate/debugging.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/circulate/debugging.py b/circulate/debugging.py new file mode 100644 index 0000000..2af81aa --- /dev/null +++ b/circulate/debugging.py @@ -0,0 +1,22 @@ + +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() + |