| 170 | plots = set(getattr(row, multiplePlots) for row in data) |
| 171 | |
| 172 | class DataForOnePlot: |
| 173 | def __init__(self, inlabel, inxdata, inydata): |
| 174 | self.label = inlabel |
| 175 | self.xdata = inxdata |
| 176 | self.ydata = inydata |
| 177 | |
| 178 | dataForAllPlots = [] |
| 179 | for plot in plots: |