summaryrefslogtreecommitdiff
path: root/linegraph-test/data.py
blob: 9171e2a770d27ccf74f95351ba70c1059305b0b6 (plain)
1
2
3
4
5
6
7
8
import csv 

with open('data.csv', 'r') as f:
    reader = csv.reader(f)
    tags = reader.next()
    data = zip(*[row for row in reader])