From c4a5344924a16484a9bf53c53666f0af82f696e2 Mon Sep 17 00:00:00 2001 From: Christopher Burns Date: Tue, 29 Jun 2010 08:04:19 -0500 Subject: EHN: Add trival debugging.py example. --HG-- branch : scipy2010 --- circulate/debugging.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 circulate/debugging.py 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() + -- cgit