diff options
author | Christopher Burns | 2010-06-29 08:04:19 -0500 |
---|---|---|
committer | Christopher Burns | 2010-06-29 08:04:19 -0500 |
commit | fe196afa50803397c5689e356063add156ae6e21 (patch) | |
tree | 68685c403dba7a8d701e44fd7f662afe4ebb8790 | |
parent | 37fbb8e2131adf6b9c14affbd1c4c890764aca33 (diff) | |
download | workshops-fe196afa50803397c5689e356063add156ae6e21.tar.gz workshops-fe196afa50803397c5689e356063add156ae6e21.tar.bz2 workshops-fe196afa50803397c5689e356063add156ae6e21.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() + |