From bf054805514ea71dba7578d434a39f9531d51934 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Sat, 6 Aug 2011 16:45:21 +0300 Subject: added linegraph test --- linegraph-test/data.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 linegraph-test/data.py (limited to 'linegraph-test/data.py') diff --git a/linegraph-test/data.py b/linegraph-test/data.py new file mode 100644 index 0000000..9171e2a --- /dev/null +++ b/linegraph-test/data.py @@ -0,0 +1,8 @@ +import csv + +with open('data.csv', 'r') as f: + reader = csv.reader(f) + tags = reader.next() + data = zip(*[row for row in reader]) + + \ No newline at end of file -- cgit v1.3.1